/* =========================================================
   CDA PROMOCIONALES
   SISTEMA VISUAL PREMIUM
   ========================================================= */

:root {
  --navy: #111827;
  --navy-soft: #1f2937;
  --black: #09090b;

  --white: #ffffff;
  --ivory: #fbfaf8;
  --surface: #f6f7fb;
  --surface-blue: #f4f8ff;

  --text: #18181b;
  --muted: #667085;
  --muted-light: #98a2b3;
  --line: rgba(17, 24, 39, 0.10);
  --line-light: rgba(255, 255, 255, 0.18);

  --blue: #2563eb;
  --cyan: #06b6d4;
  --purple: #7c3aed;
  --magenta: #db2777;
  --orange: #f97316;
  --yellow: #fbbf24;
  --green: #16a34a;

  --gradient-main:
    linear-gradient(
      135deg,
      #2563eb 0%,
      #7c3aed 48%,
      #ec4899 100%
    );

  --gradient-color:
    linear-gradient(
      135deg,
      #7c3aed 0%,
      #2563eb 50%,
      #06b6d4 100%
    );

  --gradient-warm:
    linear-gradient(
      135deg,
      #f97316 0%,
      #ec4899 100%
    );

  --shadow-soft:
    0 14px 40px rgba(17, 24, 39, 0.06);

  --shadow-medium:
    0 24px 70px rgba(17, 24, 39, 0.10);

  --shadow-strong:
    0 32px 100px rgba(37, 99, 235, 0.18);

  --max-width: 1280px;
  --transition: 0.3s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}


/* =========================================================
   HEADER ACTUAL
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav > a:not(.btn) {
  position: relative;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color var(--transition);
}

.desktop-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-main);
  transition: width var(--transition);
}

.desktop-nav > a:not(.btn):hover {
  color: var(--blue);
}

.desktop-nav > a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  width: 100%;
  padding: 8px 4% 18px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}


/* =========================================================
   BOTONES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-main);
  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.20),
    0 8px 24px rgba(124, 58, 237, 0.14);
}

.btn-primary:hover {
  box-shadow:
    0 18px 38px rgba(37, 99, 235, 0.25),
    0 10px 28px rgba(124, 58, 237, 0.18);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: #f8fafc;
}

.btn-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.btn-nav {
  min-height: 48px;
  padding: 12px 20px;
}

.btn-full {
  width: 100%;
}


/* =========================================================
   HERO PREMIUM
   ========================================================= */

.premium-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 94px);
  padding: 104px 0 112px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcff 52%,
      #f7f8fc 100%
    );
}

.premium-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(
      rgba(17, 24, 39, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.025) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7),
      transparent 88%
    );
}

.premium-hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.glow-purple {
  width: 440px;
  height: 440px;
  top: -190px;
  left: -130px;
  background: rgba(124, 58, 237, 0.14);
}

.glow-orange {
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -160px;
  background: rgba(249, 115, 22, 0.12);
}

.glow-blue {
  width: 360px;
  height: 360px;
  top: 17%;
  right: 12%;
  background: rgba(37, 99, 235, 0.10);
}

.premium-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(430px, 0.88fr);
  gap: 86px;
  align-items: center;
}

.premium-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.06);
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.premium-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-warm);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.08);
}

.premium-hero h1 {
  max-width: 820px;
  margin: 28px 0 28px;
  color: var(--black);
  font-size: clamp(4rem, 6.9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.premium-hero h1 span {
  display: block;
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
}

.premium-hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.premium-hero-text strong {
  color: var(--navy);
  font-weight: 750;
}

.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.premium-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 750;
  transition: color var(--transition);
}

.premium-text-link span {
  transition: transform var(--transition);
}

.premium-text-link:hover {
  color: var(--purple);
}

.premium-text-link:hover span {
  transform: translateX(5px);
}

.premium-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.premium-trust-line span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.premium-trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gradient-main);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.premium-hero-visual {
  position: relative;
  min-height: 640px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 490px;
  height: 490px;
  top: 68px;
  right: -35px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  top: 132px;
  right: 32px;
  border-color: rgba(249, 115, 22, 0.13);
}

.premium-object-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.object-card-main {
  top: 42px;
  right: 32px;
  width: min(100%, 430px);
  padding: 18px;
  border-radius: 38px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(247, 248, 252, 0.88)
    );
  transform: rotate(2deg);
}

.object-label {
  display: inline-flex;
  margin: 4px 0 16px 4px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.07);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.object-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 28px;
}

.object-placeholder-large {
  min-height: 410px;
  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(255, 255, 255, 0.88),
      transparent 20%
    ),
    radial-gradient(
      circle at 30% 76%,
      rgba(6, 182, 212, 0.25),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #351668 0%,
      #6d28d9 42%,
      #2563eb 72%,
      #06b6d4 100%
    );
}

.object-placeholder-large::before {
  content: "";
  width: 180px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 44px 44px 54px 54px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0.08)
    );
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.16),
    0 30px 60px rgba(0, 0, 0, 0.19);
  transform: rotate(-8deg);
}

.object-placeholder-large::after {
  content: "CDA";
  position: absolute;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: translateY(18px) rotate(-8deg);
}

.object-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.object-card-copy {
  padding: 20px 6px 6px;
}

.object-card-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.object-card-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.object-card-small {
  z-index: 3;
  width: 250px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.object-card-small strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.91rem;
}

.object-card-small span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.object-card-top {
  top: 24px;
  left: -18px;
  transform: rotate(-3deg);
}

.object-card-bottom {
  right: -16px;
  bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transform: rotate(3deg);
}

.object-color-dot {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gradient-warm);
  box-shadow:
    0 0 0 8px rgba(249, 115, 22, 0.08),
    0 12px 20px rgba(249, 115, 22, 0.16);
}

.object-card-bottom .small-number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gradient-color);
  font-size: 0.75rem;
  font-weight: 850;
}


/* =========================================================
   DECLARACIÓN
   ========================================================= */

.premium-statement {
  padding: 128px 0;
  background: var(--white);
}

.statement-line {
  width: 100%;
  height: 1px;
  margin-bottom: 68px;
  background:
    linear-gradient(
      90deg,
      rgba(124, 58, 237, 0.65),
      rgba(37, 99, 235, 0.25),
      rgba(17, 24, 39, 0.08)
    );
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: start;
}

.premium-section-number {
  display: block;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.statement-heading h2,
.premium-section-header h2,
.solutions-title h2,
.editorial-heading h2,
.final-cta-box h2 {
  color: var(--black);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.statement-heading h2 span,
.premium-section-header h2 span,
.editorial-heading h2 span {
  display: block;
  color: var(--muted-light);
}

.statement-copy {
  padding-top: 48px;
}

.statement-copy p {
  color: var(--muted);
  font-size: 1.11rem;
  line-height: 1.82;
}

.statement-copy p + p {
  margin-top: 24px;
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
   ========================================================= */

.premium-section-header {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 60px;
}

.premium-section-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}


/* =========================================================
   PRINCIPIOS
   ========================================================= */

.premium-principles {
  padding: 132px 0;
  background: var(--ivory);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 28px;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.principle-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: -110px;
  right: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.principle-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -65px;
  bottom: -85px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.principle-purple {
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      #4c1d95 0%,
      #7c3aed 65%,
      #a855f7 100%
    );
}

.principle-orange {
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      #c2410c 0%,
      #f97316 60%,
      #fb7185 100%
    );
}

.principle-blue {
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      #1d4ed8 0%,
      #2563eb 58%,
      #06b6d4 100%
    );
}

.principle-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.principle-index {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  opacity: 0.82;
}

.principle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.15rem;
}

.principle-content {
  position: relative;
  z-index: 2;
}

.principle-content h3 {
  max-width: 280px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.principle-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.75;
}


/* =========================================================
   SOLUCIONES
   ========================================================= */

.premium-solutions {
  position: relative;
  overflow: hidden;
  padding: 136px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(124, 58, 237, 0.24),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(6, 182, 212, 0.16),
      transparent 24%
    ),
    #0b0c10;
}

.premium-solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
}

.premium-solutions .container {
  position: relative;
  z-index: 2;
}

.solutions-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 80px;
}

.light-number,
.light-label {
  color: rgba(255, 255, 255, 0.58);
}

.solutions-title h2 {
  margin-top: 22px;
  color: var(--white);
}

.solutions-title h2 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #a78bfa,
      #60a5fa,
      #22d3ee
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.solutions-intro p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.03rem;
  line-height: 1.8;
}

.premium-link-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 750;
}

.premium-link-light span {
  transition: transform var(--transition);
}

.premium-link-light:hover span {
  transform: translateX(5px);
}

.solutions-list {
  border-top: 1px solid var(--line-light);
}

.solution-row {
  display: grid;
  grid-template-columns: 70px 1.05fr 1.2fr 42px;
  gap: 26px;
  align-items: center;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  transition:
    padding var(--transition),
    background var(--transition);
}

.solution-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.solution-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.solution-name {
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.solution-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.94rem;
  line-height: 1.65;
}

.solution-arrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.solution-row:hover .solution-arrow {
  transform: translate(4px, -4px);
}


/* =========================================================
   EDITORIAL
   ========================================================= */

.premium-editorial {
  padding: 136px 0;
  background: var(--white);
}

.editorial-heading {
  max-width: 920px;
  margin-bottom: 68px;
}

.editorial-heading h2 {
  margin-top: 24px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(290px, auto));
  gap: 24px;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
}

.editorial-card-large {
  grid-row: 1 / 3;
  min-height: 680px;
}

.editorial-card-small {
  min-height: 320px;
}

.editorial-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.editorial-image::before,
.editorial-image::after {
  content: "";
  position: absolute;
}

.editorial-image-one {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 255, 255, 0.92),
      transparent 18%
    ),
    linear-gradient(
      145deg,
      #eee9ff 0%,
      #dbeafe 46%,
      #cffafe 100%
    );
}

.editorial-image-one::before {
  width: 58%;
  height: 46%;
  left: 20%;
  top: 28%;
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      #151515,
      #313131
    );
  box-shadow: 0 38px 70px rgba(0, 0, 0, 0.22);
  transform: rotate(-7deg);
}

.editorial-image-one::after {
  width: 28%;
  height: 36%;
  right: 17%;
  top: 20%;
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      #7c3aed,
      #2563eb
    );
  box-shadow: 0 30px 58px rgba(37, 99, 235, 0.28);
  transform: rotate(10deg);
}

.editorial-image-two {
  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(255, 255, 255, 0.26),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #4c1d95,
      #7c3aed,
      #db2777
    );
}

.editorial-image-two::before {
  width: 120px;
  height: 185px;
  right: 18%;
  top: 19%;
  border-radius: 30px 30px 42px 42px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.38),
      rgba(255, 255, 255, 0.10)
    );
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.20);
  transform: rotate(8deg);
}

.editorial-image-three {
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 255, 255, 0.32),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      #ea580c,
      #f97316,
      #fb7185
    );
}

.editorial-image-three::before {
  width: 55%;
  height: 42%;
  left: 22%;
  top: 29%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 60px rgba(112, 36, 8, 0.24);
  transform: rotate(-5deg);
}

.editorial-image span {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  color: rgba(17, 24, 39, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.editorial-image-two span,
.editorial-image-three span {
  color: rgba(255, 255, 255, 0.70);
}

.editorial-card-copy {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  padding: 36px;
  color: var(--white);
  background:
    linear-gradient(
      to top,
      rgba(9, 9, 11, 0.86),
      rgba(9, 9, 11, 0.03)
    );
}

.editorial-card-copy span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.editorial-card-copy h3 {
  max-width: 540px;
  font-size: clamp(1.55rem, 2.8vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.editorial-card-small .editorial-card-copy {
  padding: 28px;
}

.editorial-card-small .editorial-card-copy h3 {
  font-size: clamp(1.35rem, 1.9vw, 2.15rem);
}

.editorial-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-light);
  font-size: 0.82rem;
}


/* =========================================================
   PROCESO
   ========================================================= */

.premium-process {
  padding: 136px 0;
  background: var(--ivory);
}

.process-header {
  margin-bottom: 68px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.process-content h3 {
  color: var(--navy);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.process-content p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.premium-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background: #0c0c10;
}

.premium-final-cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 84px 84px;
}

.final-cta-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(48px);
}

.final-glow-one {
  width: 520px;
  height: 520px;
  top: -230px;
  left: -120px;
  background: rgba(124, 58, 237, 0.32);
}

.final-glow-two {
  width: 500px;
  height: 500px;
  right: -190px;
  bottom: -250px;
  background: rgba(249, 115, 22, 0.26);
}

.final-cta-box {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.final-cta-box h2 {
  color: var(--white);
}

.final-cta-box h2 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #a78bfa,
      #60a5fa,
      #22d3ee,
      #fb7185
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.final-cta-box > p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
}

.premium-cta-button {
  min-width: 220px;
}

.premium-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 750;
}

.premium-whatsapp-link span {
  transition: transform var(--transition);
}

.premium-whatsapp-link:hover span {
  transform: translate(4px, -4px);
}


/* =========================================================
   FOOTER ACTUAL
   ========================================================= */

.site-footer {
  padding: 34px 0 38px;
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.site-footer p,
.footer-contact a {
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--purple);
}


/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #22c55e,
      #16a34a
    );
  box-shadow:
    0 16px 34px rgba(22, 163, 74, 0.32);
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(22, 163, 74, 0.38);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   ELEMENTOS ANTIGUOS
   Mantiene compatibilidad con otras páginas.
   ========================================================= */

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--surface-blue);
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 14px 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-kicker,
.card-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.07);
  font-size: 0.8rem;
  font-weight: 800;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.product-card,
.process-card,
.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.product-card h3,
.process-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.info-card p,
.product-card p,
.process-card p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

.object-card-main {
  animation: floatSoft 7s ease-in-out infinite;
}

.object-card-top {
  animation: floatCard 6s ease-in-out infinite;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .premium-hero {
    min-height: auto;
  }

  .premium-hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .premium-hero-copy {
    max-width: 900px;
  }

  .premium-hero-visual {
    width: min(620px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .statement-grid,
  .solutions-heading {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .statement-copy {
    max-width: 800px;
    padding-top: 0;
  }

  .premium-section-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 390px;
  }

  .solution-row {
    grid-template-columns: 55px 1fr 1fr 36px;
  }

  .process-content {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 82px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .logo-img {
    height: 76px;
    max-width: 290px;
  }

  .premium-hero {
    padding: 72px 0 82px;
  }

  .premium-hero h1 {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }

  .premium-hero-visual {
    min-height: 570px;
  }

  .object-card-main {
    right: 50%;
    transform: translateX(50%) rotate(2deg);
  }

  @keyframes floatSoft {
    0%,
    100% {
      transform: translateX(50%) translateY(0) rotate(2deg);
    }

    50% {
      transform: translateX(50%) translateY(-10px) rotate(2deg);
    }
  }

  .object-card-top {
    left: 0;
  }

  .object-card-bottom {
    right: 0;
  }

  .premium-statement,
  .premium-principles,
  .premium-solutions,
  .premium-editorial,
  .premium-process {
    padding: 96px 0;
  }

  .statement-line {
    margin-bottom: 48px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .editorial-card-large {
    grid-row: auto;
    min-height: 550px;
  }

  .editorial-card-small {
    min-height: 390px;
  }

  .solution-row {
    grid-template-columns: 45px 1fr 34px;
    gap: 18px;
    padding: 26px 0;
  }

  .solution-description {
    display: none;
  }

  .process-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cols-3,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max-width), 90%);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .logo-img {
    height: 66px;
    max-width: 240px;
  }

  .premium-hero {
    padding: 58px 0 68px;
  }

  .premium-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .premium-hero h1 {
    margin: 24px 0;
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: 0.94;
  }

  .premium-hero-text {
    font-size: 1rem;
  }

  .premium-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-hero-actions .btn {
    width: 100%;
  }

  .premium-text-link {
    justify-content: center;
    padding: 8px 0;
  }

  .premium-trust-line {
    flex-direction: column;
    gap: 12px;
  }

  .premium-hero-visual {
    min-height: 520px;
  }

  .object-card-main {
    width: 88%;
    padding: 14px;
    border-radius: 28px;
  }

  .object-placeholder-large {
    min-height: 330px;
  }

  .object-placeholder-large::before {
    width: 145px;
    height: 210px;
  }

  .object-card-small {
    width: 195px;
    padding: 16px;
  }

  .object-card-top {
    top: 0;
    left: -10px;
  }

  .object-card-bottom {
    right: -8px;
    bottom: 12px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
    top: 90px;
    right: -20px;
  }

  .orbit-two {
    width: 270px;
    height: 270px;
    top: 135px;
    right: 25px;
  }

  .premium-statement,
  .premium-principles,
  .premium-solutions,
  .premium-editorial,
  .premium-process {
    padding: 76px 0;
  }

  .statement-heading h2,
  .premium-section-header h2,
  .solutions-title h2,
  .editorial-heading h2,
  .final-cta-box h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .principle-card {
    min-height: 380px;
    padding: 24px;
    border-radius: 28px;
  }

  .solutions-heading {
    margin-bottom: 52px;
  }

  .solution-row {
    grid-template-columns: 35px 1fr 26px;
  }

  .solution-name {
    font-size: 1.25rem;
  }

  .editorial-card-large {
    min-height: 470px;
  }

  .editorial-card-small {
    min-height: 340px;
  }

  .editorial-card-copy {
    padding: 25px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }

  .premium-final-cta {
    padding: 82px 0;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .btn,
  .premium-whatsapp-link {
    width: 100%;
    justify-content: center;
  }

  .footer-contact {
    text-align: left;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
  }
}