:root {
  --bg: #FCF5E5;
  --surface: #F6EFE3;
  --surface-2: #EFE6D8;
  --text: #000000;
  --text-soft: #5F5A53;
  --cream: #FCF5E5;
  --white: #FFFFFF;
  --teal: #53AF85;
  --teal-deep: #3D8367;
  --coral: #EA6D46;
  --pink: #DE4663;
  --rose: #9E2A5F;
  --blue: #3A7FB4;
  --blue-deep: #0C2975;
  --gold: #C5A03F;
  --olive: #ACA56F;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.16);
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1000;
}

/* NAVBAR */
.nav-logo {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--text);
}
.nav-logo span { color: var(--teal); }
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(252,245,229,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--coral) !important;
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--rose) !important; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }
  
  .hero-with-banner {
    position: relative;
    background: var(--cream);
  }

  .hero-with-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(252,245,229,0.98) 0%,
        rgba(252,245,229,0.96) 28%,
        rgba(252,245,229,0.84) 44%,
        rgba(252,245,229,0.50) 60%,
        rgba(252,245,229,0.18) 100%
      ),
      url('/banner.jpeg') center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
  }
  
  .hero-with-banner .hero-inner {
    grid-template-columns: minmax(0, 620px);
    justify-content: start;
  }
  
  .hero-with-banner .hero-left {
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 100px 20px 60px;
    }
  
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  
    .hero-with-banner {
      background:
        linear-gradient(
          180deg,
          rgba(252,245,229,0.95) 0%,
          rgba(252,245,229,0.90) 24%,
          rgba(252,245,229,0.72) 48%,
          rgba(252,245,229,0.40) 100%
        ),
        url('banner.jpeg') center center / cover no-repeat;
    }
  }

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.04em;
  user-select: none;
  z-index: 1;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero: pingüino + copa */
.penguin-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.penguin-circle {
  width: 340px;
  height: 340px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.penguin-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(83, 175, 133, 0.2) 0%, transparent 42%),
              radial-gradient(circle at 75% 70%, rgba(234, 109, 70, 0.12) 0%, transparent 45%);
}
.penguin-svg { position: relative; z-index: 1; }
.penguin-label {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 20px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-soft);
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--coral);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-h1 .line1 { display: block; color: var(--text); }
.hero-h1 .line2 { display: block; color: var(--coral); }
.hero-h1 .line3 { display: block; color: var(--text); font-size: .65em; }
.hero-body {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-body strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  border: none;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--border-strong);
  padding: 15px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.28); background: rgba(255,255,255,0.45); }

/* TICKER */
.ticker-wrap {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 0 32px;
  color: rgba(255,255,255,0.95);
}
.ticker-sep { color: rgba(255,255,255,0.3); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-left .overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.manifesto-left h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  font-weight: 500;
}
.manifesto-left h2 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.manifesto-left p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.manifesto-right { padding-top: 12px; }
.manifesto-line {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.manifesto-line:last-child { border-bottom: none; }
.ml-icon {
  font-size: 20px;
  min-width: 32px;
  padding-top: 1px;
}
.inc-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.inc-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.ml-text { font-size: 15px; color: var(--text-soft); line-height: 1.5; }
.ml-text b { color: var(--text); font-weight: 600; }

/* PLANES */
.planes {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.planes-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
}
.section-h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(48px, 6vw, 76px);
  text-align: center;
  line-height: .95;
  margin-bottom: 8px;
  letter-spacing: -.03em;
  font-weight: 500;
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 60px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.planes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.plan-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.plan-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(83,175,133,0.10) 100%);
}
.plan-card.featured::before {
  content: 'MÁS PEDIDO';
  position: absolute;
  top: 18px; right: -30px;
  background: var(--teal);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 6px 42px;
  transform: rotate(32deg);
}

.plan-visual {
  margin: 18px 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.45);
  box-shadow: var(--shadow-soft);
}

.plan-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tag-tranqui { background: rgba(197,160,63,0.16); color: var(--gold); }
.tag-picante { background: rgba(83,175,133,0.16); color: var(--teal-deep); }
.plan-name {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 56px;
  line-height: .9;
  margin-bottom: 4px;
  letter-spacing: -.02em;
  font-weight: 500;
}
.plan-desc {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-price .amount {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--text);
}
.plan-price .currency { font-size: 24px; vertical-align: super; color: var(--text-soft); }
.plan-price .period { font-size: 13px; color: var(--text-soft); margin-top: 2px; }

.plan-price {
  margin-bottom: 20px;
}
.plan-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  align-items: flex-start;
}

.plan-card .plan-features,
.plan-card .plan-items,
.plan-card ul {
  flex: 1;
}

.plan-card .btn-primary,
.plan-card .btn-ghost,
.plan-card .plan-btn-primary,
.plan-card .plan-btn-ghost,
.plan-card a[href*="checkout"],
.plan-card button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  box-shadow: none;
}

.plan-card .btn-primary,
.plan-card .plan-btn-primary,
.plan-card a[href*="checkout"] {
  background: var(--coral);
  color: var(--cream);
}

.plan-card .btn-primary:hover,
.plan-card .plan-btn-primary:hover,
.plan-card a[href*="checkout"]:hover {
  background: var(--rose);
  color: var(--cream);
  transform: translateY(-2px);
}

.plan-card .btn-ghost,
.plan-card .plan-btn-ghost,
.plan-card button {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.plan-card .btn-ghost:hover,
.plan-card .plan-btn-ghost:hover,
.plan-card button:hover {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.28);
  color: var(--text);
  transform: translateY(-2px);
}

.plan-card.featured .btn-primary,
.plan-card.featured .plan-btn-primary,
.plan-card.featured a[href*="checkout"] {
  background: var(--coral);
  color: var(--cream);
}
.plan-btn-primary { background: var(--text); color: white; }
.plan-btn-primary:hover { background: var(--blue-deep); }
.plan-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.plan-btn-ghost:hover { border-color: rgba(0,0,0,0.35); color: var(--text); background: rgba(255,255,255,0.45); }

/* INCLUDES */
.includes {
  padding: 110px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.includes-flow {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 56px;
  }
  
  .flow-card {
    min-height: 100%;
  }
  
  .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 54px;
    line-height: 1;
    color: var(--coral);
    opacity: 0.9;
    user-select: none;
  }

.inc-card {
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s, background .2s;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}
.inc-card:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.72);
  transform: translateY(-3px);
}
.includes .section-h2 {
  margin-bottom: 14px;
}

.includes .section-sub {
  max-width: 560px;
}
.inc-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.includes-closing {
  margin-top: 34px;
}


/* LANZAMIENTO */
.lanzamiento {
  padding: 96px 40px;
  background: linear-gradient(180deg, #F4ECDD 0%, #EFE4CF 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.launch-card {
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.launch-card.big {
  grid-column: span 2;
  background: linear-gradient(135deg, #53AF85 0%, #6BC49A 100%);
  border-color: var(--teal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.launch-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
  margin-bottom: 18px;
  max-width: 360px;
}

  .launch-card-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
    max-width: 900px;
    margin: 0 auto;
  }

.launch-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 38px;
  line-height: .95;
  color: var(--text);
  margin-bottom: 10px;
}

.launch-signup-copy {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
  margin-bottom: 18px;
  max-width: 360px;
}

.launch-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.launch-form-row input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}

.launch-form-row input::placeholder {
  color: rgba(0,0,0,0.45);
}

.launch-form-row .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0;
}


.launch-note {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.62);
  font-weight: 700;
}

.launch-card-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px 40px;
}

.launch-newsletter-left {
  max-width: 560px;
}

.launch-title-newsletter {
  color: #000000;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.launch-desc-newsletter {
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  line-height: 1.5;
  max-width: 320px;
}

.launch-signup-stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.launch-email-full {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  padding: 0 20px;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
}

.launch-email-full::placeholder {
  color: rgba(0,0,0,0.42);
}

.launch-submit-full {
  width: 100%;
  height: 46px;
  font-size: 13px;
  letter-spacing: 0.08em;
  justify-content: center;
}

.launch-note-dark {
  color: rgba(0, 0, 0, 0.62);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
}

/* CTA FINAL */
.cta-final {
  padding: 80px 40px 92px;
  background: linear-gradient(180deg, #F7F0E4 0%, #F1E6D6 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(83,175,133,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-final-inner-simple {
  grid-template-columns: 1fr;
  justify-items: center;
}

.cta-copy-center {
  max-width: 560px;
  text-align: center;
}

.cta-copy-center p {
  max-width: 520px;
  margin: 0 auto;
}

.cta-copy {
  max-width: 540px;
}

.cta-final h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: .9;
  margin-bottom: 20px;
  letter-spacing: -.04em;
  font-weight: 500;
}

.cta-final h2 span { color: var(--coral); }

.cta-final p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 420px;
  margin: 0;
}

.cta-form-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
}

.cta-form-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 34px;
  line-height: .95;
  color: var(--text);
  margin-bottom: 10px;
}

.cta-form-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 22px !important;
  max-width: none !important;
}

.cta-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-form-row input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  pointer-events: auto;
}

.cta-form-row input::placeholder {
  color: var(--text-soft);
}

.cta-form-row .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0;
}

.cupos-badge {
  display: inline-flex;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text-soft);
  text-transform: uppercase;
  font-weight: 700;
}

/* FOOTER */
footer {
  padding: 56px 40px 34px;
  background: #EFE4CF;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 32px;
  letter-spacing: -.02em;
}

.footer-logo span { color: var(--teal); }

.footer-lead {
  margin-top: 10px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, border-color .2s, background .2s;
}

.footer-btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.86);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.footer-text {
  font-size: 12px;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-links a:hover { color: var(--text); }

/* BRANDBOOK VISUAL ACCENTS */
.hero,
.manifesto,
.includes,
.lanzamiento,
.cta-final {
  position: relative;
}

.hero::after,
.manifesto::after,
.includes::after,
.lanzamiento::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(83,175,133,0.9), rgba(58,127,180,0.9));
  clip-path: polygon(20% 0%, 100% 20%, 80% 100%, 0% 80%);
  opacity: 0.10;
  pointer-events: none;
}

.hero::after { right: 4%; top: 14%; }
.manifesto::after { right: 6%; bottom: 8%; }
.includes::after { left: 4%; top: 18%; }
.lanzamiento::after { left: 6%; bottom: 10%; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero-h1 { animation: fadeUp .7s .1s ease both; }
.hero-body { animation: fadeUp .7s .2s ease both; }
.hero-actions { animation: fadeUp .7s .3s ease both; }
.penguin-wrap { animation: fadeUp .8s .2s ease both; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.penguin-circle { animation: float 4s ease-in-out infinite; }

/* MOBILE */
@media (max-width: 768px) {
    .includes-flow {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      
      .flow-arrow {
        font-size: 36px;
        transform: rotate(90deg);
      } 
  .hero-with-banner::before {
    background:
      linear-gradient(
        180deg,
        rgba(252,245,229,0.95) 0%,
        rgba(252,245,229,0.90) 24%,
        rgba(252,245,229,0.72) 48%,
        rgba(252,245,229,0.40) 100%
      ),
      url('/banner.jpeg') center center / cover no-repeat;
  }
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .penguin-circle { width: 260px; height: 260px; border-radius: 24px; }
  .manifesto, .lanzamiento, .includes { padding: 72px 20px; }
  .manifesto-grid, .launch-grid { grid-template-columns: 1fr; }
  .launch-card.big {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .planes { padding: 60px 20px; }
  .planes-grid { grid-template-columns: 1fr; }
  .plan-visual img {
    height: 220px;
    object-position: center top;
  }
  .cta-final-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-form-row .btn-primary {
    width: 100%;
  }

  .launch-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-form-row .btn-primary {
    width: 100%;
  }

  .launch-card-newsletter {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .launch-signup-stacked {
    max-width: 100%;
    justify-self: stretch;
  }

  .launch-title-newsletter {
    font-size: 28px;
  }

  .launch-desc-newsletter {
    font-size: 15px;
    max-width: none;
  }

  .launch-email-full,
  .launch-submit-full {
    min-height: 58px;
    font-size: 16px;
  }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-actions { justify-content: flex-start; }
  .includes-grid { grid-template-columns: 1fr; gap: 18px; }
  .cta-final { padding: 88px 20px; }
  footer { padding: 36px 20px 26px; }
}
    