/* ===========================
   VARIABLES
=========================== */
:root {
  --navy:       #0d1f3c;
  --navy-deep:  #060e1f;
  --navy-light: #162d52;
  --navy-mid:   #1a3a6b;
  --gold:       #c9a84c;
  --gold-light: #e2c07a;
  --gold-dark:  #a8882d;
  --gold-pale:  rgba(201,168,76,0.08);
  --blue-electric: #2563eb;
  --green:      #22c55e;
  --green-dark: #16a34a;
  --green-pale: rgba(34,197,94,0.08);
  --white:      #ffffff;
  --gray-50:    #f8f9fc;
  --gray-100:   #f1f3f8;
  --gray-200:   #e2e6ef;
  --text:       #1e2a45;
  --text-light: #5a6482;
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(13,31,60,0.07);
  --shadow:     0 8px 36px rgba(13,31,60,0.13);
  --shadow-lg:  0 20px 60px rgba(13,31,60,0.2);
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   CONTAINER
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201,168,76,0.22);
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
}
.section-label.light {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.28);
}
.section-label.light::before { background: var(--gold-light); box-shadow: 0 0 6px var(--gold-light); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.section-title.white { color: #fff; }
.section-desc {
  font-size: 1.04rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  text-align: center;
}
.gold-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-1 { margin-top: 1rem; }

/* ===========================
   BOTONES
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 1rem 2.1rem; font-size: 0.98rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 5px 18px rgba(13,31,60,0.28);
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(13,31,60,0.4);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--navy-mid), #1e4a8a);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  box-shadow: 0 10px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1fb857;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

.btn-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-color: transparent;
  font-size: 0.84rem;
  padding: 0.58rem 1.3rem;
  box-shadow: 0 3px 14px rgba(201,168,76,0.3);
}
.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.45);
  filter: brightness(1.08);
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,14,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s var(--ease);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.header.scrolled {
  background: rgba(6,14,31,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1.5rem;
}
.logo-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  isolation: isolate;
  padding: 4px 0;
  transition: transform 0.3s var(--ease);
}
.logo-link:hover { transform: translateY(-1px); }

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter:
    brightness(1.35)
    contrast(1.25)
    saturate(1.15)
    drop-shadow(0 0 0.4px rgba(13,31,60,0.6));
  transition: filter 0.3s var(--ease);
}
.logo-link:hover .logo-img {
  filter:
    brightness(1.45)
    contrast(1.3)
    saturate(1.2)
    drop-shadow(0 0 8px rgba(201,168,76,0.35));
}

/* Línea dorada vertical decorativa */
.logo-link::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(201,168,76,0.5) 30%,
    rgba(201,168,76,0.5) 70%,
    transparent 100%
  );
}

/* Wordmark elegante junto al logo */
.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
.brand-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  transition: all 0.22s var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.25s var(--ease);
  border-radius: 2px;
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { left: 0.9rem; right: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(6,14,31,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.35s var(--ease);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; display: flex; }
.mobile-nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold-light); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(145deg, #060e1f 0%, #0b1a35 45%, #0f2245 100%);
}

/* Grid fondo */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}

/* Orbes */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.11) 0%, transparent 70%);
  top: -200px; right: -120px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(26,74,138,0.3) 0%, transparent 70%);
  bottom: -120px; left: -80px;
  animation: orbFloat2 11s ease-in-out infinite;
}
.hero-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%; left: 42%;
  animation: orbFloat1 14s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-28px, 22px); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(22px, -26px); }
}

.hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.55;
}

/* Layout */
.hero-inner {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 2.5rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 7rem;
  position: relative; z-index: 2;
}

/* Badge */
.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50px;
  padding: 0.48rem 1.15rem;
  margin-bottom: 1.8rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  width: fit-content;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.2s var(--ease) forwards;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Título multi-línea con animaciones escalonadas */
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.07;
  margin-bottom: 1.8rem;
  gap: 0.06rem;
}
.hero-title-line1 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.4s var(--ease) forwards;
}
.hero-title-line2 {
  font-size: clamp(2.3rem, 4.3vw, 3.7rem);
  color: #fff;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.55s var(--ease) forwards;
}
.hero-title-accent {
  font-size: clamp(2.3rem, 4.3vw, 3.7rem);
  color: #fff;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.7s var(--ease) forwards;
}
.hero-title-gold {
  font-size: clamp(2.8rem, 5.4vw, 4.7rem);
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: fadeSlideUp 0.7s 0.85s var(--ease) forwards, goldShimmer 5s 1.5s linear infinite;
  letter-spacing: -0.035em;
  opacity: 0;
}
@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.88;
  margin-bottom: 2.5rem;
  max-width: 500px;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(201,168,76,0.38);
  opacity: 0;
  animation: fadeSlideUp 0.7s 1s var(--ease) forwards;
}

/* Botones hero */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 1.15s var(--ease) forwards;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 2.1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b08228 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  box-shadow: 0 7px 30px rgba(201,168,76,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: all 0.28s var(--ease);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 80%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-hero-primary:hover::before { left: 120%; }
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(201,168,76,0.58);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 1.85rem;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.94rem;
  border: 1.5px solid rgba(255,255,255,0.16);
  transition: all 0.28s var(--ease);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/* Trust bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 1.3s var(--ease) forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.trust-item:hover { color: rgba(201,168,76,0.7); }
.trust-icon { color: var(--gold); font-size: 0.45rem; opacity: 0.65; }
.trust-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }

/* Visual derecho */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeSlideRight 0.85s 0.6s var(--ease) forwards;
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(35px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Chips flotantes */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(6,14,31,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  z-index: 10;
  color: #fff;
  box-shadow: 0 10px 36px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-float svg { color: var(--gold); flex-shrink: 0; }
.float-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-bottom: 3px;
}
.float-val { font-weight: 800; font-size: 0.8rem; color: #fff; line-height: 1; }
.hero-float--tl {
  top: 4%; left: -10%;
  animation: floatY 5s ease-in-out infinite;
}
.hero-float--tr {
  top: 10%; right: -8%;
  animation: floatY 6.5s ease-in-out infinite 1.2s;
}
.hero-float--br {
  bottom: 8%; right: -6%;
  animation: floatY 7s ease-in-out infinite 0.6s;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Marco imagen */
.hero-img-frame { position: relative; width: 100%; max-width: 530px; }
.hero-img-border {
  position: absolute; inset: -2px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.05) 50%, rgba(201,168,76,0.25) 100%);
  z-index: 0;
}
.hero-img {
  position: relative;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.55);
  z-index: 1; display: block;
}
.hero-img-shine {
  position: absolute; inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none; z-index: 2;
}

/* Wave */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===========================
   PROBLEMA
=========================== */
.problem {
  padding: 7.5rem 0;
  background: #fff;
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.problem-header { text-align: center; margin-bottom: 3.5rem; }
.problem-header .section-desc { margin-bottom: 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid #c0392b;
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.5rem;
  transition: all 0.3s var(--ease);
  position: relative;
}
.problem-card:hover {
  background: #fff;
  border-color: rgba(201,168,76,0.3);
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #c0392b;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease);
}
.problem-card:hover .problem-icon {
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
}
.problem-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.32;
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}
.problem-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(201,168,76,0.06) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  margin-top: 1rem;
}
.problem-cta p {
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.25rem;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ===========================
   DIFERENCIADOR
=========================== */
.differentiator {
  padding: 7.5rem 0;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.diff-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(26,74,138,0.35) 0%, transparent 55%);
}
.differentiator::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.diff-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.diff-desc {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.62);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.32s var(--ease);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transform: scaleY(0);
  transition: transform 0.32s var(--ease);
  transform-origin: top;
}
.diff-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
}
.diff-card:hover::before { transform: scaleY(1); }
.diff-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.diff-icon {
  display: none;
}
.diff-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.32;
}
.diff-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* ===========================
   POSICIONAMIENTO
=========================== */
.positioning {
  padding: 7.5rem 0;
  background: var(--gray-50);
  text-align: center;
  position: relative;
}
.positioning::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.32s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform 0.32s var(--ease);
  transform-origin: left;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.25); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(13,31,60,0.05), rgba(201,168,76,0.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--navy);
  border: 1px solid rgba(201,168,76,0.18);
  transition: all 0.32s var(--ease);
}
.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(13,31,60,0.25);
}
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.7rem;
}
.pillar-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }

/* ===========================
   SERVICIOS
=========================== */
.services {
  padding: 7.5rem 0;
  background: #fff;
  text-align: center;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
  counter-reset: service-counter;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  transition: all 0.32s var(--ease);
  position: relative;
  overflow: hidden;
  counter-increment: service-counter;
}
.service-card::before {
  content: '0' counter(service-counter);
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  transition: opacity 0.32s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  transition: height 0.32s var(--ease);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 0.08; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(13,31,60,0.05), rgba(201,168,76,0.1));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
  border: 1px solid rgba(201,168,76,0.18);
  transition: all 0.32s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.service-badge {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 0.26rem 0.7rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem; font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.38;
  transition: color 0.32s var(--ease);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.89rem;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(13,31,60,0.04);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--gold);
  transition: all 0.32s var(--ease);
}
.service-card:hover .service-benefit {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
}
.service-benefit svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.seps-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(13,31,60,0.03);
  border: 1px solid rgba(13,31,60,0.09);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-xs);
  padding: 1.1rem 1.6rem;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: left;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.seps-note svg { flex-shrink: 0; color: var(--navy); }

/* ===========================
   TRANSFORMAMOS
=========================== */
.transform-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.transform-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.transform-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28), transparent);
}
.transform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}
.transform-image { position: relative; }
.transform-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(201,168,76,0.2) 0%, transparent 60%);
  z-index: 0;
}
.transform-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  position: relative; z-index: 1;
}
.transform-content p {
  color: rgba(255,255,255,0.72);
  line-height: 1.88;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

/* ===========================
   MODELO
=========================== */
.model-section {
  padding: 7.5rem 0;
  background: linear-gradient(150deg, var(--navy-deep) 0%, #0c1e3a 50%, #0f2448 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Fondo grid */
.model-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 75%);
}

/* Orbes modelo */
.model-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.model-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.model-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,74,138,0.3) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

/* Header texto */
.model-header { margin-bottom: 4rem; }
.model-desc {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.58);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.88;
}

/* Pasos */
.model-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
  position: relative;
}

/* Línea conectora */
.model-connector {
  position: absolute;
  top: 44px; left: calc(10% + 32px); right: calc(10% + 32px);
  height: 2px; z-index: 0;
  pointer-events: none;
}
.model-connector-line {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.15) 10%,
    rgba(201,168,76,0.4) 50%,
    rgba(201,168,76,0.15) 90%,
    transparent 100%
  );
}
.model-connector-glow {
  position: absolute; inset: -1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,168,76,0.08) 50%, transparent 100%
  );
  filter: blur(4px);
}

/* Tarjeta paso */
.model-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.75rem;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: all 0.32s var(--ease);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.model-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  transform-origin: center;
}
.model-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.model-card:hover::before { transform: scaleX(1); }

.model-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: block;
}
.model-card-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: all 0.32s var(--ease);
}
.model-card:hover .model-card-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
}
.model-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  color: #fff; margin-bottom: 0.55rem;
}
.model-card p {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
}

/* Parte inferior: imagen + quote */
.model-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 4rem;
}
.model-image-side {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.model-image-side img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}
.model-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.model-quote-side { color: rgba(255,255,255,0.85); }
.model-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem; font-weight: 900;
  color: var(--gold); opacity: 0.25;
  line-height: 1; margin-bottom: -1.5rem;
  display: block;
}
blockquote {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.model-quote-author {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.model-author-line {
  width: 32px; height: 1.5px;
  background: var(--gold); opacity: 0.6;
  flex-shrink: 0;
}

/* ===========================
   BENEFICIOS
=========================== */
.benefits {
  padding: 7.5rem 0;
  background: #fff;
  text-align: center;
  position: relative;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.1rem;
  text-align: left;
}
.benefit-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(180deg, var(--navy), var(--navy-mid));
  transition: width 0.32s var(--ease);
}
.benefit-item:hover {
  border-color: rgba(13,31,60,0.15);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.benefit-item:hover::before { width: 3px; }

.benefit-check {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 14px rgba(13,31,60,0.22);
  transition: all 0.28s var(--ease);
}
.benefit-item:hover .benefit-check { transform: scale(1.08); }
.benefit-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.3rem;
}
.benefit-item p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* ===========================
   BLOG / NOTICIAS
=========================== */
.blog {
  padding: 7.5rem 0;
  background: var(--gray-50);
  position: relative;
}
.blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.blog-header h2 { margin-bottom: 1rem; }
.blog-desc {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 540px;
}
.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.85rem 1.4rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  background: #fff;
}
.blog-all svg { transition: transform 0.28s var(--ease); }
.blog-all:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 6px 22px rgba(13,31,60,0.2);
}
.blog-all:hover svg { transform: translateX(4px); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.32s var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}

.blog-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.blog-card--featured .blog-image { height: 280px; }

.blog-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}
.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,31,60,0.15) 0%, rgba(13,31,60,0.55) 100%),
    linear-gradient(135deg, rgba(13,31,60,0.25) 0%, transparent 50%);
  z-index: 2;
}

.blog-category {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  background: rgba(201,168,76,0.95);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.blog-source {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.32rem 0.7rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.blog-content {
  padding: 1.6rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card--featured .blog-content { padding: 2rem 2rem 2.1rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.blog-meta svg { color: var(--gold); }
.blog-dot { opacity: 0.4; margin: 0 0.15rem; }
.blog-date { color: var(--gold-dark); font-weight: 700; }

.blog-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.32;
  margin-bottom: 0.75rem;
  transition: color 0.28s var(--ease);
}
.blog-card--featured h3 { font-size: 1.3rem; }
.blog-card:hover h3 { color: var(--gold-dark); }

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
}
.blog-link svg { transition: transform 0.28s var(--ease); }
.blog-link:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.blog-link:hover svg { transform: translateX(4px); }

/* Newsletter */
.blog-newsletter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
}
.blog-newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.newsletter-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.newsletter-text {
  flex: 1;
  position: relative; z-index: 1;
}
.newsletter-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.blog-newsletter .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ===========================
   AGENDA
=========================== */
.agenda {
  padding: 7rem 0;
  background: var(--gray-50);
  position: relative;
}
.agenda::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.agenda-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
}
.agenda-text {
  padding: 3.5rem;
  display: flex; flex-direction: column;
}
.agenda-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.agenda-text p { color: var(--text-light); line-height: 1.82; margin-bottom: 1.5rem; font-size: 0.97rem; }
.agenda-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.agenda-list li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
}
.agenda-list li svg { color: var(--gold); flex-shrink: 0; }
.agenda-cal {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; position: relative; overflow: hidden;
}
.agenda-cal::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.cal-placeholder {
  text-align: center; color: rgba(255,255,255,0.8);
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
  position: relative; z-index: 1;
}
.cal-placeholder svg { color: var(--gold); opacity: 0.6; }
.cal-placeholder p { font-size: 0.95rem; line-height: 1.75; max-width: 260px; }

/* ===========================
   CONTACTO
=========================== */
.contact {
  padding: 7.5rem 0;
  background: #fff; text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.contact-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.75rem 2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.8rem;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0);
  transition: transform 0.32s var(--ease);
  transform-origin: center;
}
.contact-card:first-child::after { background: #25D366; }
.contact-card:last-child::after { background: linear-gradient(90deg, var(--navy), var(--gold)); }
.contact-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-5px); }
.contact-card:hover::after { transform: scaleX(1); }

.contact-icon {
  width: 68px; height: 68px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37,211,102,0.32);
  transition: transform 0.28s var(--ease);
}
.contact-card:hover .contact-icon { transform: scale(1.08); }
.contact-icon--blue {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  box-shadow: 0 5px 20px rgba(13,31,60,0.28);
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
}
.contact-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.72; }
.contact-phone { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: #25D366; }

/* ===========================
   CTA FINAL
=========================== */
.cta-final {
  padding: 7.5rem 0;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative; text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,168,76,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(26,58,107,0.5) 0%, transparent 55%);
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.cta-logo {
  height: 62px; width: auto; margin-bottom: 0.5rem;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.cta-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  font-weight: 900; color: #fff; line-height: 1.18;
  letter-spacing: -0.02em;
}
.cta-final p {
  font-size: 1.04rem; color: rgba(255,255,255,0.68);
  max-width: 560px; line-height: 1.85;
}
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #040c1b; color: rgba(255,255,255,0.6); padding-top: 4.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  height: 50px; width: auto; margin-bottom: 1rem;
  mix-blend-mode: screen; filter: brightness(1.05);
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; font-size: 0.82rem; margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.42); }
.footer-services h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; color: #fff;
  margin-bottom: 1.25rem; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-services ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-services li {
  font-size: 0.86rem; color: rgba(255,255,255,0.45);
  padding-left: 0.8rem;
  border-left: 1.5px solid rgba(201,168,76,0.2);
  transition: color 0.2s, border-color 0.2s;
  cursor: default;
}
.footer-services li:hover { color: rgba(201,168,76,0.7); border-color: rgba(201,168,76,0.5); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold-light); font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 1.35rem 0; text-align: center; }
.footer-bottom span { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ===========================
   WHATSAPP FLOTANTE
=========================== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: #25D366; color: #fff;
  border-radius: 50px; padding: 0.78rem 1.3rem;
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  transition: all 0.28s var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  background: #1fb857;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.07); }
}

/* ===========================
   ANIMACIONES SCROLL
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { gap: 2rem; grid-template-columns: 1fr 1fr; }
  .hero-float--tl { left: -4%; }
  .hero-float--tr { right: -2%; }
  .hero-float--br { right: -2%; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }

  /* HERO */
  .hero { min-height: auto; padding-bottom: 2rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
    gap: 2.5rem;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-badge-wrap { margin: 0 auto 1.6rem; }
  .hero-title-line1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-title-line2, .hero-title-accent { font-size: clamp(1.9rem, 6vw, 2.5rem); }
  .hero-title-gold { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero-sub {
    margin: 0 auto 2rem;
    padding-left: 0; border-left: none;
    border-top: 2px solid rgba(201,168,76,0.3);
    padding-top: 1rem; max-width: 100%;
  }
  .hero-btns { justify-content: center; gap: 0.85rem; }
  .hero-trust-bar { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .hero-float--tl, .hero-float--tr { display: none; }
  .hero-float--br { display: none; }
  .hero-img-frame { max-width: 340px; margin: 0 auto; }

  /* SECCIONES — padding reducido */
  .positioning, .services, .benefits,
  .contact, .cta-final { padding: 5rem 0; }
  .transform-section, .model-section,
  .agenda { padding: 5rem 0; }

  /* PROBLEMA */
  .problem-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .problem { padding: 5rem 0; }

  /* DIFERENCIADOR */
  .differentiator { padding: 5rem 0; }
  .diff-grid { grid-template-columns: 1fr; gap: 1rem; }
  .diff-card { padding: 1.75rem 1.5rem; gap: 1rem; }
  .diff-num { font-size: 1.7rem; }

  /* PILARES */
  .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* SERVICIOS */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* TRANSFORM */
  .transform-inner { grid-template-columns: 1fr; gap: 2rem; }
  .transform-image { order: 2; }
  .transform-content { order: 1; text-align: center; }
  .transform-content .section-label { display: inline-flex; }

  /* MODELO */
  .model-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .model-steps .model-card:last-child {
    grid-column: span 2;
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
  .model-connector { display: none; }
  .model-bottom { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
  .model-image-side { order: 2; }
  .model-quote-side { order: 1; text-align: center; }
  .model-quote-author { justify-content: center; }
  blockquote { font-size: 1rem; }
  .model-header { margin-bottom: 2.5rem; }

  /* BENEFICIOS */
  .benefits-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .benefit-item:hover { transform: none; }

  /* AGENDA */
  .agenda-card { grid-template-columns: 1fr; }
  .agenda-text { padding: 2rem 1.5rem; }
  .agenda-cal { padding: 2rem; min-height: 220px; }

  /* BLOG */
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: center;
  }
  .blog-header > div:first-child { width: 100%; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .blog-card--featured .blog-image { height: 200px; }
  .blog-card--featured h3 { font-size: 1.1rem; }
  .blog-newsletter {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
    gap: 1.25rem;
  }

  /* CONTACTO */
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding-top: 3rem; }

  /* WA */
  .wa-float span { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; bottom: 1.5rem; right: 1.5rem; }

  .section-desc { text-align: center; }
  .section-title { text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }

  /* Hero botones en columna */
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%; justify-content: center;
  }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Modelo: 1 columna en muy pequeño */
  .model-steps { grid-template-columns: 1fr; }
  .model-steps .model-card:last-child { grid-column: span 1; max-width: 100%; }

  /* Header logo */
  .logo-img { height: 44px; }

  /* Pillar padding */
  .pillar-card { padding: 2rem 1.5rem; }
  .service-card { padding: 1.75rem 1.5rem; }
}

/* ============================================
   NUEVAS SECCIONES — REPOSICIONAMIENTO 2026
============================================ */

/* === NOSOTROS === */
.nosotros {
  padding: 7.5rem 0;
  background: #fff;
  position: relative;
}
.nosotros::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.nosotros-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.nosotros-text .section-title { margin-bottom: 1.25rem; }
.nosotros-lead {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.nosotros-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.nosotros-quote {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-pale), rgba(34,197,94,0.05));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.7;
  margin-top: 0.5rem;
}
.nosotros-quote p {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
}
.nosotros-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.np-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: all 0.3s var(--ease);
}
.np-card:hover {
  background: #fff;
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.np-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.np-icon--blue {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
}
.np-icon--green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
}
.np-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.np-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* === LÍNEAS ESTRATÉGICAS === */
.lineas {
  padding: 7.5rem 0;
  background: var(--gray-50);
  position: relative;
}
.lineas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.lineas-header {
  text-align: center;
  margin-bottom: 4rem;
}
.lineas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.linea-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: all 0.32s var(--ease);
  position: relative;
  overflow: hidden;
}
.linea-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.linea-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.linea-card:hover::before { transform: scaleX(1); }
.linea-card--green::before {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}
.linea-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.linea-card--green .linea-num { color: var(--green-dark); }
.linea-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(13,31,60,0.05), rgba(201,168,76,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
  border: 1px solid rgba(201,168,76,0.18);
  transition: all 0.32s var(--ease);
}
.linea-card--green .linea-icon {
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(34,197,94,0.15));
  color: var(--green-dark);
  border-color: rgba(34,197,94,0.25);
}
.linea-card:hover .linea-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(13,31,60,0.2);
}
.linea-card--green:hover .linea-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  box-shadow: 0 6px 18px rgba(34,197,94,0.3);
}
.linea-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(201,168,76,0.22);
}
.linea-tag--green {
  background: rgba(34,197,94,0.1);
  color: var(--green-dark);
  border-color: rgba(34,197,94,0.3);
}
.linea-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}
.linea-objective {
  font-size: 0.92rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--gray-200);
}
.linea-card--green .linea-objective { color: var(--green-dark); }
.linea-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.linea-list li {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.linea-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.linea-card--green .linea-list li::before { background: var(--green); }

/* === PROGRAMAS DESTACADOS === */
.programas {
  padding: 7.5rem 0;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.programas-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(34,197,94,0.08) 0%, transparent 55%);
}
.programas-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.programas-desc {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.programas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.programa-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  backdrop-filter: blur(12px);
  transition: all 0.32s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.programa-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.programa-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(255,255,255,0.04));
  border-color: rgba(201,168,76,0.35);
}
.programa-card--green {
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(255,255,255,0.04));
  border-color: rgba(34,197,94,0.3);
}
.programa-card--green:hover {
  border-color: rgba(34,197,94,0.5);
}
.programa-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.programa-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all 0.32s var(--ease);
}
.programa-card--green .programa-icon {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color: var(--green);
}
.programa-card:hover .programa-icon {
  transform: scale(1.08);
  background: rgba(201,168,76,0.2);
}
.programa-card--green:hover .programa-icon {
  background: rgba(34,197,94,0.2);
}
.programa-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.programa-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.programa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
}
.programa-card--green .programa-link { color: var(--green); }
.programa-link svg { transition: transform 0.28s var(--ease); }
.programa-link:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}
.programa-card--green .programa-link:hover { border-bottom-color: var(--green); }
.programa-link:hover svg { transform: translateX(4px); }

/* === DIFERENCIAL === */
.diferencial {
  padding: 7.5rem 0;
  background: #fff;
  position: relative;
}
.diferencial-header {
  text-align: center;
  margin-bottom: 4rem;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dif-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  transition: all 0.3s var(--ease);
  position: relative;
}
.dif-item:hover {
  background: #fff;
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.dif-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
  box-shadow: 0 5px 18px rgba(13,31,60,0.2);
  transition: transform 0.3s var(--ease);
}
.dif-item--green .dif-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  box-shadow: 0 5px 18px rgba(34,197,94,0.25);
}
.dif-item:hover .dif-icon { transform: scale(1.08) rotate(-3deg); }
.dif-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.dif-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === RESPONSIVE NUEVO === */
@media (max-width: 1024px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lineas-grid { grid-template-columns: repeat(2, 1fr); }
  .programas-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nosotros { padding: 5rem 0; }
  .nosotros-inner { gap: 2.5rem; }
  .nosotros-pillars { grid-template-columns: 1fr; }
  .lineas { padding: 5rem 0; }
  .lineas-grid { grid-template-columns: 1fr; gap: 1rem; }
  .linea-card { padding: 1.85rem 1.5rem; }
  .programas { padding: 5rem 0; }
  .programas-grid { grid-template-columns: 1fr; gap: 1rem; }
  .diferencial { padding: 5rem 0; }
  .dif-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================
   RETOS / CONFIANZA / MODELO 4 PASOS / PAQUETES
============================================ */

/* === RETOS === */
.retos {
  padding: 7.5rem 0;
  background: #fff;
  position: relative;
}
.retos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.retos-header { text-align: center; margin-bottom: 3.5rem; }
.retos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.reto-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid #c0392b;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.reto-card:hover {
  background: #fff;
  border-color: rgba(201,168,76,0.3);
  border-left-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.reto-icon {
  width: 42px; height: 42px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #c0392b;
  margin-bottom: 0.9rem;
  transition: all 0.3s var(--ease);
}
.reto-card:hover .reto-icon {
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
}
.reto-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.32;
}
.reto-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
}
.retos-cta {
  text-align: center;
  padding: 2.25rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(201,168,76,0.07) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.retos-cta p {
  font-size: 1.04rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* === MODELO 4 PASOS === */
.modelo-trabajo {
  padding: 7.5rem 0;
  background: var(--gray-50);
  position: relative;
}
.modelo-trabajo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.modelo-header { text-align: center; margin-bottom: 4rem; }
.modelo-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.modelo-flow::before {
  content: '';
  position: absolute;
  top: 75px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
  opacity: 0.18;
  z-index: 0;
}
.modelo-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.32s var(--ease);
}
.modelo-step:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.modelo-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
}
.modelo-step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 6px 20px rgba(13,31,60,0.22);
  transition: transform 0.32s var(--ease);
}
.modelo-step:hover .modelo-step-icon { transform: scale(1.08); }
.modelo-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.modelo-step p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* === CONFIANZA === */
.confianza {
  padding: 7.5rem 0;
  background: #fff;
  position: relative;
}
.confianza::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.confianza-header { text-align: center; margin-bottom: 3.5rem; }
.confianza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.conf-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  transition: all 0.3s var(--ease);
}
.conf-item:hover {
  background: #fff;
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.conf-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.1rem;
  box-shadow: 0 5px 16px rgba(13,31,60,0.18);
  transition: transform 0.3s var(--ease);
}
.conf-item:hover .conf-icon { transform: scale(1.08) rotate(-3deg); }
.conf-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.conf-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === PAQUETES === */
.paquetes {
  padding: 7.5rem 0;
  background: var(--gray-50);
  position: relative;
}
.paquetes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.paquetes-header { text-align: center; margin-bottom: 3.5rem; }
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.paquete-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.32s var(--ease);
  position: relative;
}
.paquete-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.paquete-card--featured {
  background: linear-gradient(160deg, #fff 0%, rgba(201,168,76,0.06) 100%);
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(201,168,76,0.18);
  transform: translateY(-6px);
}
.paquete-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 50px rgba(201,168,76,0.25);
}
.paquete-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gray-100);
  padding: 0.32rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.paquete-tag--featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.paquete-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.paquete-desc {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.paquete-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.paquete-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}
.paquete-list li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}
.paquete-card .btn { align-self: flex-start; }

/* === RESPONSIVE NUEVO === */
@media (max-width: 1024px) {
  .retos-grid { grid-template-columns: repeat(2, 1fr); }
  .modelo-flow { grid-template-columns: repeat(2, 1fr); }
  .modelo-flow::before { display: none; }
  .confianza-grid { grid-template-columns: repeat(2, 1fr); }
  .paquetes-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .paquete-card--featured { transform: none; }
}
@media (max-width: 768px) {
  .retos { padding: 5rem 0; }
  .retos-grid { grid-template-columns: 1fr; }
  .reto-card { padding: 1.4rem; }
  .modelo-trabajo { padding: 5rem 0; }
  .modelo-flow { grid-template-columns: 1fr; gap: 1rem; }
  .modelo-step { padding: 1.75rem 1.4rem; }
  .confianza { padding: 5rem 0; }
  .confianza-grid { grid-template-columns: 1fr; }
  .paquetes { padding: 5rem 0; }
  .paquete-card { padding: 1.85rem 1.5rem; }
  .retos-cta { padding: 1.75rem 1.25rem; }
  .retos-cta p { font-size: 0.96rem; }
}


