/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Galipán — Condominios (paleta principal del sitio) */
  --marino:        #1A3A5C;
  --marino-dark:   #0D2440;
  --marino-light:  #2A5A8C;
  --verde-agua:    #1D9E75;
  --arena:         #F4F1EB;
  --arena-dark:    #E8E3D8;

  /* Lagunazo — Contabilidad */
  --esmeralda:     #1F6B5C;

  /* Naiguatá — Nómina */
  --indigo:        #4A3580;

  /* Semánticos */
  --warning:       #E8A020;
  --success:       #1F6B5C;
  --error:         #C94040;

  /* Neutros */
  --text:          #1A2332;
  --text-muted:    #6B7A8D;
  --border:        #DDD8CE;
  --bg:            #FFFFFF;
  --bg-soft:       #F4F1EB;

  /* Sombras */
  --shadow:        0 4px 24px rgba(26,58,92,.10);
  --shadow-lg:     0 12px 48px rgba(26,58,92,.16);

  /* Radios */
  --radius:        14px;
  --radius-sm:     8px;

  /* Tipografía */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--verde-agua);
  color: #fff;
  border-color: var(--verde-agua);
}
.btn-primary:hover { background: #178a65; border-color: #178a65; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,158,117,.3); }

.btn-verde {
  background: var(--verde-agua);
  color: #fff;
  border-color: var(--verde-agua);
}
.btn-verde:hover { background: #178a65; border-color: #178a65; transform: translateY(-1px); }

.btn-primary-marino {
  background: var(--marino);
  color: #fff;
  border-color: var(--marino);
}
.btn-primary-marino:hover { background: var(--marino-dark); border-color: var(--marino-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-primary-esmeralda {
  background: var(--esmeralda);
  color: #fff;
  border-color: var(--esmeralda);
}
.btn-primary-esmeralda:hover { background: #144A3E; border-color: #144A3E; transform: translateY(-1px); }

.btn-primary-indigo {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
}
.btn-primary-indigo:hover { background: #2E2260; border-color: #2E2260; transform: translateY(-1px); }

.btn-outline-marino {
  background: transparent;
  color: var(--marino);
  border-color: var(--marino);
}
.btn-outline-marino:hover { background: var(--marino); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); }
.navbar.scrolled .btn-outline-light {
  color: var(--marino);
  border-color: var(--marino);
}
.navbar.scrolled .btn-outline-light:hover { background: var(--marino); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-coming-soon {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: default;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(26,58,92,.08);
  color: var(--marino);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .2px;
}
.badge-hero {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.badge-galipan {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(26,58,92,.08);
  color: var(--marino);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.2px;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

/* Logo: oculto sobre el hero, aparece al hacer scroll */
.logo-dark  { display: none; }
.logo-light { display: none; }
.navbar.scrolled .logo-dark  { display: block; }
.navbar.scrolled .logo-light { display: none; }

.nav-menu { display: contents; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color: var(--marino); }

.nav-actions {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/avila-hero.webp');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,36,64,.82) 0%,
    rgba(26,58,92,.70) 50%,
    rgba(9,25,46,.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-logo {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: #7ECAB5;
}
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-text p strong { color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Diagram */
.hero-diagram {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.diagram-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}
.diagram-trail { display: flex; flex-direction: column; gap: 0; }
.trail-module {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  margin: 0 -12px;
  border-radius: 10px;
  transition: background .2s;
}
.trail-module:hover { background: rgba(255,255,255,.06); }
.trail-line {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,.2);
  margin-left: 9px;
}
.trail-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid rgba(255,255,255,.3);
}
.trail-dot.active {
  background: var(--verde-agua);
  border-color: var(--verde-agua);
  box-shadow: 0 0 12px rgba(29,158,117,.6);
}
.trail-dot.soon {
  background: rgba(255,255,255,.15);
}
.trail-info { display: flex; flex-direction: column; gap: 2px; }
.trail-name { font-size: 17px; font-weight: 700; color: #fff; font-family: var(--font-display); }
.trail-sub  { font-size: 12px; color: rgba(255,255,255,.55); }
.trail-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  width: fit-content;
}
.trail-badge.active { background: rgba(29,158,117,.25); color: #7ECAB5; border: 1px solid rgba(29,158,117,.4); }
.trail-badge.soon   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.15); }


.hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg { width: 100%; display: block; }

/* ===== PAGE HERO (páginas internas) ===== */
.page-hero {
  position: relative;
  padding: 168px 0 72px;
  color: #fff;
}
.page-hero-marino     { background: linear-gradient(135deg, var(--marino-dark) 0%, var(--marino) 60%, var(--marino-light) 100%); }
.page-hero-esmeralda  { background: linear-gradient(135deg, #144A3E 0%, var(--esmeralda) 60%, #2E9B7A 100%); }
.page-hero-indigo     { background: linear-gradient(135deg, #2E2260 0%, var(--indigo) 60%, #6550A8 100%); }

.page-hero-inner { max-width: 680px; }
.page-hero .badge-hero { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Breve teaser de "Quiénes somos" en el home */
.story-teaser {
  background: var(--marino-dark);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.story-teaser .badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.story-teaser h2 { font-family: var(--font-display); font-size: clamp(26px,3.5vw,36px); font-weight: 700; margin-bottom: 16px; }
.story-teaser p { font-size: 16px; color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto 28px; }

/* Historia de un solo módulo (usada en galipan/lagunazo/hercules.html) */
.mini-story-section {
  background: var(--marino-dark);
  padding: 80px 0;
}
.mini-story-section .container { max-width: 720px; }
.mini-story-section .section-header { color: #fff; margin-bottom: 32px; }
.mini-story-section .section-header h2 { color: #fff; }
.mini-story-section .section-header p  { color: rgba(255,255,255,.72); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
}
.stat-icon { font-size: 22px; }
.stat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.stat-item span {
  font-size: 13px;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== MÓDULOS ===== */
.modules {
  padding: 96px 0;
  background: var(--bg);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .3s, box-shadow .3s;
}
.module-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.mod-galipan  { background: #EBF2F8; border-color: rgba(26,58,92,.2); }
.mod-lagunazo { background: #E8F4F0; border-color: rgba(31,107,92,.15); }
.mod-hercules { background: #EEE9F5; border-color: rgba(74,53,128,.15); }

.mod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mod-altitude {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.mod-status {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.mod-status.active { background: rgba(29,158,117,.15); color: var(--verde-agua); }
.mod-status.soon   { background: rgba(107,114,128,.1); color: var(--text-muted); }

.module-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mod-galipan  h3 { color: var(--marino); }
.mod-lagunazo h3 { color: var(--esmeralda); }
.mod-hercules h3 { color: var(--indigo); }

.mod-category { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.mod-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.mod-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.mod-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.mod-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--text-muted);
}

.mod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 16px;
  margin-top: auto;
}
.mod-price { font-size: 15px; font-weight: 700; color: var(--text); }
.mod-price strong { font-size: 20px; color: var(--marino); }
.mod-price-soon { font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ===== COMBINACIONES ===== */
.combos-strip {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.combos-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.combo-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .25s;
}
.combo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.combo-card-featured {
  background: var(--marino-dark);
  border-color: var(--marino-dark);
}
.combo-card-featured strong,
.combo-card-featured p { color: rgba(255,255,255,.9); }
.combo-card-featured p  { color: rgba(255,255,255,.65); }

.combo-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.combo-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.tag-galipan  { background: rgba(26,58,92,.12);  color: var(--marino); }
.tag-lagunazo { background: rgba(31,107,92,.12); color: var(--esmeralda); }
.tag-hercules { background: rgba(74,53,128,.12); color: var(--indigo); }
.combo-card-featured .tag-galipan  { background: rgba(255,255,255,.15); color: #a8c8e8; }
.combo-card-featured .tag-lagunazo { background: rgba(255,255,255,.15); color: #7ecab5; }
.combo-card-featured .tag-hercules { background: rgba(255,255,255,.15); color: #c4b5f4; }

.combo-plus {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.combo-card-featured .combo-plus { color: rgba(255,255,255,.4); }

.combo-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.combo-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ===== BRAND STORY ===== */
.brand-story {
  background: var(--marino-dark);
  padding: 96px 0;
  color: #fff;
}
.brand-story .badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}
.brand-header { color: #fff; }
.brand-header h2 { color: #fff; }
.brand-header p  { color: rgba(255,255,255,.72); }

.brand-modules-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.story-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.story-card:hover { background: rgba(255,255,255,.09); }

.story-galipan  { border-color: rgba(26,58,92,.6);    background: rgba(26,58,92,.25); }
.story-lagunazo { border-color: rgba(31,107,92,.4);   background: rgba(31,107,92,.15); }
.story-hercules { border-color: rgba(74,53,128,.4);   background: rgba(74,53,128,.15); }

.story-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}
.story-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.story-alt {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: 2px;
}
.story-status { margin-left: auto; flex-shrink: 0; }
.active-badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(29,158,117,.25);
  color: #7ECAB5;
  border: 1px solid rgba(29,158,117,.4);
}
.soon-badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.15);
}
.story-card p {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin: 0;
}
.story-card p strong { color: rgba(255,255,255,.92); }
.story-card p em     { color: rgba(255,255,255,.82); font-style: italic; }

/* ===== ¿PARA QUIÉN? ===== */
.for-who {
  padding: 96px 0;
  background: var(--bg-soft);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--marino); }
.who-icon { font-size: 36px; margin-bottom: 14px; }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--marino);
}
.who-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.who-module {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
}

/* ===== VENEZUELA ===== */
.venezuela-section {
  padding: 80px 0;
  background: var(--bg);
}
.ve-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.ve-chip {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.ve-chip:hover {
  background: var(--marino);
  color: #fff;
  border-color: var(--marino);
  transform: translateY(-2px);
}

/* ===== GALIPÁN DETALLE ===== */
.galipan-detail {
  padding: 96px 0;
  background: var(--bg-soft);
}
.galipan-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.galipan-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--marino);
  margin-bottom: 16px;
  line-height: 1.2;
}
.galipan-text > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.galipan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.gf-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gf-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.gf-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.gf-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

.galipan-access { display: flex; gap: 14px; flex-wrap: wrap; }

/* Price card */
.price-card {
  background: var(--bg);
  border: 2px solid var(--marino);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-lg);
}
.price-badge {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--marino);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--marino);
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount span { font-size: 20px; font-weight: 500; color: var(--text-muted); }
.price-amount-soon { font-size: 30px; }

.price-card-esmeralda { border-color: var(--esmeralda); }
.price-card-esmeralda .price-badge,
.price-card-esmeralda .price-amount { color: var(--esmeralda); }

.price-card-indigo { border-color: var(--indigo); }
.price-card-indigo .price-badge,
.price-card-indigo .price-amount { color: var(--indigo); }
.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-list li { font-size: 14px; font-weight: 500; color: var(--text); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--marino-dark) 0%, var(--marino) 60%, var(--marino-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== CONTACTO ===== */
.contact {
  padding: 96px 0;
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.contact-socials { display: flex; flex-direction: column; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--marino);
  transition: gap .2s;
}
.social-link:hover { gap: 14px; }

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--marino);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.form-note.success { background: #ecfdf5; color: #065f46; }
.form-note.error   { background: #fef2f2; color: #991b1b; }

/* ===== FOOTER ===== */
.footer {
  background: var(--marino-dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  line-height: 1.65;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-socials a:hover { color: #fff; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: #fff; font-size: 14px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-diagram  { max-width: 480px; margin: 0 auto; }
  .modules-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .brand-modules-story { grid-template-columns: 1fr; }
  .who-grid      { grid-template-columns: 1fr; }
  .galipan-inner { grid-template-columns: 1fr; }
  .galipan-features-grid { grid-template-columns: 1fr; }
  .price-card    { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 36px; }
  .footer-links  { flex-wrap: wrap; gap: 28px; }
}

@media (max-width: 640px) {
  .nav-menu:not(.open) { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--marino-dark);
    padding: 16px 24px 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .nav-menu.open .nav-links { display: flex; flex-direction: column; gap: 14px; }
  .nav-menu.open .nav-links a { color: rgba(255,255,255,.85); font-size: 16px; }
  .nav-menu.open .nav-links a:hover { color: #fff; }
  .nav-menu.open .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-menu.open .nav-actions .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  .stats-inner   { flex-direction: column; gap: 20px; }
  .stat-divider  { display: none; }
  .stat-item     { padding: 0; }
  .form-row      { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .galipan-access { flex-direction: column; }
  .galipan-access .btn { text-align: center; justify-content: center; }
  .modules-grid  { max-width: 100%; }
  .combos-grid   { grid-template-columns: 1fr 1fr; }

}
