:root {
  /* Paleta Patuopo */
  --bg-color: #f7f5eb;       
  --ink-color: #1f2937;      
  --brand-color: #3a6b35;    
  --brand-light: #e9f5e9; 
  --accent-color: #f59e0b;   
  --red: #ef4444;
  --green: #10b981;
  --dark-green-brand: #14532d; /* Nuevo color para el Timer */
  
  /* Ajustes */
  --header-height: 80px;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--ink-color);
  line-height: 1.6;
}

/* --- TIPOGRAFÍA --- */
h1, h2, h3, .brand__name, .btn, .price-amount { font-family: var(--font-heading); }

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 1rem; color: var(--brand-color); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; line-height: 1.2; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: #4b5563; font-size: 1rem; }

a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Scroll Offset Ajustado */
section[id] { 
  scroll-margin-top: calc(var(--header-height) - 10px); 
}

/* --- NAVEGACIÓN --- */
.nav {
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  background: rgba(247, 245, 235, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-color);
}
.brand__logo { width: 36px; border-radius: 8px; }

.nav__links {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a:hover { color: var(--brand-color); }

@media(min-width: 950px) {
  .nav__links { display: flex; }
}

/* --- BOTONES --- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s, filter 0.2s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--brand-color);
  color: white;
  box-shadow: 0 4px 10px rgba(58, 107, 53, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
}

.btn--sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

.badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.badge--white { background: white; color: var(--brand-color); }

/* --- SECCIONES (Padding reducido para menos aire) --- */
.section { padding: 3rem 0; }
.section--alt { background: white; }
.section--soft-green { 
  background-color: var(--brand-light); 
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.text-center { text-align: center; }
.grid-center { display: grid; gap: 3rem; align-items: center; }

@media(min-width: 900px) {
  .grid-center { grid-template-columns: 1fr 1fr; }
}

/* --- HERO --- */
.hero { padding: 2rem 0 3rem; overflow: hidden; }
.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media(min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1.3fr; }
}

.lead { font-size: 1.1rem; color: #4b5563; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.muted-text { font-size: 0.8rem; opacity: 0.7; }

.hero__visual { position: relative; height: 350px; }
@media(min-width: 500px) { .hero__visual { height: 450px; } }

.screenshot-carousel { position: relative; width: 100%; height: 100%; }

.fade-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
  background: white;
  opacity: 0;
  animation: fadeLoop 12s infinite; 
}
.fade-img:first-child { opacity: 1; }

@keyframes fadeLoop {
  0% { opacity: 0; z-index: 1; }
  5% { opacity: 1; z-index: 2; }
  33% { opacity: 1; z-index: 2; }
  38% { opacity: 0; z-index: 1; }
  100% { opacity: 0; z-index: 1; }
}

.patu-float {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 190px; 
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- PROBLEMA --- */
.patu-sticker { display: block; margin: 0 auto; transform: rotate(-3deg); }
.patu-medium { width: 250px; } 

.pain-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-item {
  background: #fdf2f8; /* Fondo rosado muy suave */
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: #831843; /* Texto rojizo oscuro */
  font-size: 1rem;
  line-height: 1.5;
  border-left: 4px solid #db2777; /* Línea lateral rosa para destacar */
}

.highlight-box {
  background: white;
  border-left: 4px solid var(--accent-color); /* Naranja */
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-size: 1.05rem;
}

/* --- CARDS MÉTODO --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media(min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  height: 100%;
}
.card:hover { transform: translateY(-3px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

/* --- MANIFIESTO --- */
.bunker-visual { text-align: center; }

/* IMPORTANTE: El nombre aquí debe ser .patu-huge para coincidir con tu HTML */
.patu-huge { 
  width: 300px; /* <--- 240px: El tamaño perfecto. Ni gigante (280) ni enano. */
  max-width: 90%; 
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); 
  margin-top: 1rem;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Menos gap */
  margin-top: 1.5rem;
}
.ph-item {
  padding: 1.2rem;
  background: white; 
  border-left: 4px solid var(--brand-color);
}
.ph-item h3 { color: var(--brand-color); margin-bottom: 0.3rem; font-size: 1.1rem; }
.ph-item p { margin: 0; font-size: 0.95rem; }

/* --- PATUTIMER (FINAL: VISIBLE PERO INACTIVO) --- */

#patutimer {
  padding: 1rem 0;
}

.timer-box {
  background: var(--dark-green-brand);
  color: white;
  border-radius: 20px;
  padding: 2rem 3rem;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 83, 45, 0.3);
}

/* CONTENIDO INTERNO (Texto + Imagen) */
.blurred-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  
  /* 🔴 FUERZA BRUTA PARA QUITAR EL BORROSO */
  filter: none !important;          /* Quita el blur sí o sí */
  backdrop-filter: none !important; /* Quita efectos de fondo */
  -webkit-filter: none !important;  /* Para Safari/Mac */
  
  opacity: 0.4;         /* Solo transparencia para que parezca inactivo */
  pointer-events: none; /* Bloquea los clics */
}

/* EL VELO (Solo posiciona el cartel, sin fondo) */
.coming-soon-veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: transparent; /* Invisible */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EL CARTEL AMARILLO */
.cs-badge {
  background: var(--accent-color);
  color: #78350f;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  padding: 10px 40px;
  transform: rotate(-5deg);
  border: 3px solid white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  pointer-events: auto; 
}

/* Estilos de texto */
.timer-content { flex: 1; }
.timer-content h2 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
.timer-content p { color: #dcfce7; font-size: 0.95rem; margin-bottom: 1rem; }
.timer-content .check-list li { color: #f0fdf4; padding-left: 0; margin-bottom: 0.2rem; font-size: 0.85rem; }

/* Imagen a la derecha (Fija) */
.timer-img { 
  flex: 0 0 220px; /* Ancho reservado para la imagen */
  display: flex;
  justify-content: center;
}

.timer-img img {
  max-height: 240px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.timer-buttons { display: flex; gap: 8px; margin-top: 1rem; flex-wrap: wrap; }

/* RESPONSIVE: En móvil sí apilamos */
@media (max-width: 768px) {
  .blurred-content { flex-direction: column; text-align: center; }
  .timer-img { margin-top: 1rem; }
  .timer-buttons { justify-content: center; }
}

/* --- PRECIOS --- */
.price-hero {
  margin-bottom: 2rem; /* Menos margen */
  padding: 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--brand-color);
  box-shadow: 0 8px 0 var(--brand-color);
  display: inline-block;
  max-width: 600px;
}
.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0;
  color: var(--brand-color);
}
.price-symbol { font-size: 1.2rem; font-weight: 600; }
.price-amount { font-size: 3.5rem; font-weight: 700; line-height: 1; }
.price-meta { font-size: 1rem; color: var(--ink-color); font-weight: 500; }

/* --- PLATAFORMAS --- */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.platform-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  width: 180px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
  height: 100%;
}
.platform-card:hover { transform: scale(1.05); border: 2px solid var(--brand-color); }
.platform-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 0;
}
.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--brand-color); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 1.5rem 1.5rem; margin: 0; font-size: 0.95rem; color: #4b5563; }

/* --- FOOTER CENTRADO --- */
.footer {
  text-align: center;
  padding: 4rem 0 2rem;
  background: linear-gradient(to top, #e5e7eb, transparent);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.patu-footer { width: 150px; margin-bottom: 0; }
.social-links { margin: 1.5rem 0; font-weight: 600; }
.social-links a { margin: 0 10px; }
.copy { font-size: 0.9rem; opacity: 0.7; }

/* Utils */
.mt-large { margin-top: 3rem; }
.mb-medium { margin-bottom: 1.5rem; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .section { padding: 3rem 0; }
  .hero { padding-top: 1rem; }
  .patu-hero { width: 130px; bottom: -20px; right: -10px; }
  .patu-medium { width: 180px; }
  .patu-large { width: 220px; margin-top: 2rem; }
  .price-amount { font-size: 2.5rem; }
}
/* --- AJUSTE COMPACTO PARA LA SECCIÓN PROBLEMA --- */
/* Reducimos un poco el hueco entre los puntos */
#problema .pain-points {
  gap: 0.5rem; /* Antes era 1rem */
  margin-top: 1rem;
}

/* Hacemos las tarjetas de texto más finas y con letra más pequeña */
#problema .pain-item {
  padding: 0.6rem 1rem; /* Menos relleno vertical */
  font-size: 0.85rem;   /* Letra un poco más pequeña (antes 0.95rem) */
  line-height: 1.35;    /* Líneas más juntas */
}

/* Ajustamos también el título y el párrafo de esa sección para ganar espacio arriba */
#problema h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); /* Un pelín más pequeño que el estándar */
  margin-bottom: 0.5rem;
}

#problema > .container > .grid-center > .problem-text > p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* La caja final de conclusión también más compacta */
#problema .highlight-box {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
}
/* --- AJUSTE LOGO CON TAGLINE --- */
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-color);
  opacity: 0.9;
  letter-spacing: 0.02em;
}
.hero__subtitle {
  font-size: 1.5rem;
  color: var(--accent-color); /* Naranja para destacar */
  margin-bottom: 1rem;
  font-weight: 700;
}

/* --- NUEVA SECCIÓN DINÁMICA --- */
.dynamics-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.dynamic-step {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-circle.highlight {
  background: var(--brand-color);
  color: white;
  box-shadow: 0 4px 15px rgba(58, 107, 53, 0.4);
}

.step-arrow {
  font-size: 2rem;
  color: #d1d5db;
  margin-top: 10px;
}

.dynamic-step h3 { margin-bottom: 0.5rem; }
.dynamic-step p { font-size: 0.9rem; }

/* En móvil ocultamos flechas y ponemos uno debajo de otro */
@media (max-width: 768px) {
  .step-arrow { display: none; }
  .dynamics-grid { flex-direction: column; align-items: center; gap: 2rem; }
}

/* --- FAQ DIVIDIDO --- */
.faq-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.faq-category {
  font-size: 1.1rem;
  color: var(--brand-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}
/* --- ESTILOS NUEVOS (V7) --- */

/* 1. La Dinámica */
.dynamics-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.dynamic-step {
  flex: 1;
  min-width: 150px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 45px;
  height: 45px;
  background: var(--bg-color);
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.step-circle.highlight {
  background: var(--brand-color);
  color: white;
  box-shadow: 0 4px 15px rgba(58, 107, 53, 0.4);
}
.step-arrow { font-size: 1.5rem; color: #d1d5db; margin-top: 8px; }

/* 2. Botones PatuTimer */
.timer-buttons { display: flex; gap: 10px; margin-top: 1.5rem; flex-wrap: wrap; }
.btn--timer {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.btn--timer:hover { background: white; color: var(--brand-color); }

/* 3. Tarjeta Promo Lanzamiento */
.promo-card {
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 2px solid var(--brand-color);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: inline-block;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  position: relative;
}
.promo-badge {
  background: var(--brand-color);
  color: white;
  padding: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.promo-grid { display: flex; flex-wrap: wrap; }
.promo-item {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promo-divider { width: 1px; background: #eee; margin: 1rem 0; }
.platform-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: #4b5563; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-old { text-decoration: line-through; color: #9ca3af; font-size: 1.2rem; }
.price-new { font-size: 2.2rem; font-weight: 800; color: var(--brand-color); }

/* 4. Caja No Móvil */
.no-mobile-box {
  margin-top: 3rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.no-mobile-box h4 { margin-top: 0; color: #92400e; margin-bottom: 0.5rem; }
.no-mobile-box p { margin-bottom: 0; color: #78350f; font-size: 0.95rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .step-arrow { display: none; }
  .dynamics-grid { flex-direction: column; gap: 2rem; align-items: center;}
  .promo-grid { flex-direction: column; }
  .promo-divider { width: 100%; height: 1px; margin: 0; }
}

/* --- SEPARADOR DE PLATAFORMAS --- */
.platforms-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  width: 100%;
  max-width: 500px; /* Que no sea excesivamente larga */
  position: relative;
}

.platforms-separator::before,
.platforms-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb; /* Gris suave */
}

.platforms-separator span {
  padding: 0 1rem;
  color: #9ca3af; /* Texto gris */
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* --- ESTILOS VELO PRÓXIMAMENTE --- */

.relative-lock {
  position: relative;
  overflow: hidden; /* Para que la etiqueta no se salga de las esquinas */
}

/* El Velo */
.coming-soon-veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20; /* Por encima de todo */
  background: rgba(20, 83, 45, 0.6); /* Verde oscuro semitransparente */
  backdrop-filter: blur(4px); /* Efecto cristal borroso (iOS style) */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px; /* Mismo borde que la caja padre */
}

/* La Etiqueta */
.cs-badge {
  background: var(--accent-color); /* Naranja/Amarillo */
  color: #78350f; /* Marrón oscuro para contraste */
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  padding: 15px 60px;
  transform: rotate(-10deg); /* Diagonal */
  border: 4px solid white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Desactivar botones visualmente debajo del velo */
.btn--timer.disabled {
  pointer-events: none; /* No se puede hacer clic */
  opacity: 0.5;
}

/* --- AJUSTE MÓVIL --- */
@media (max-width: 768px) {
  .cs-badge {
    font-size: 1.5rem; /* Más pequeño para que quepa */
    padding: 10px 30px;
    transform: rotate(-5deg);
  }
}
/* --- AVISO ROJO TIENDAS --- */
.store-warning {
  color: #dc2626; /* Rojo alerta */
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  background: #fef2f2;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #fecaca;
}
.store-warning a {
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
}

/* --- ARREGLO CENTRADO SEPARADOR MÓVIL --- */
/* Esto arregla que la línea de "Tablets" se vea rara en pantallas estrechas */
.platforms-separator {
  width: 90%; /* Antes daba problemas si la pantalla era menor de 500px */
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- MENÚ MÓVIL (HAMBURGUESA) --- */
.nav-toggle {
  display: none; /* Oculto en PC */
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--brand-color);
  padding: 0 10px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 850px) {
  
  /* Ajustes generales de texto */
  h1 { font-size: 2.2rem; }
  .section { padding: 3rem 0; }
  .hero { padding-top: 1rem; }
  
  /* Patos ajustados */
  .patu-hero { width: 120px; bottom: -20px; right: -10px; }
  .patu-medium { width: 180px; }
  .patu-huge { width: 220px; margin-top: 2rem; }
  
  /* Ajustes de precios */
  .price-amount { font-size: 2.5rem; }
  .promo-grid { flex-direction: column; }
  .promo-divider { width: 100%; height: 1px; margin: 0; }

  /* --- CABECERA MÓVIL REPARADA --- */
  
  .nav__inner {
    flex-wrap: wrap; 
  }
  
  /* 1. EL BOTÓN "EMPEZAR" VUELVE (Más pequeño) */
  .nav__inner .btn--primary {
    display: inline-flex;   /* ¡Visible! */
    font-size: 0.8rem;      /* Letra más pequeña */
    padding: 6px 14px;      /* Botón más compacto */
    margin-left: auto;      /* Empuja todo a la derecha */
    margin-right: 12px;     /* Espacio con la hamburguesa */
  }

  /* 2. BOTÓN HAMBURGUESA (Al lado del botón verde) */
  .nav-toggle {
    display: block;
    margin-left: 0;         /* Ya no necesita empujar, lo hace el botón verde */
    padding: 0 5px;
  }

  /* 3. EL MENÚ DESPLEGABLE */
  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #fdfdfa; /* Fondo crema casi blanco */
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    display: block;
    font-size: 1rem;
  }
}