/* ===========================
   SOAPLOVE – ESTILOS GLOBALES
   =========================== */

:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --beige: #E8D5B7;
  --beige-dark: #D4B896;
  --brown: #8B7355;
  --brown-dark: #6B5840;
  --terra: #A0785A;
  --green: #6B8C6B;
  --green-dark: #4E6E4E;
  --text: #3D2B1F;
  --text-light: #7A6555;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(139, 115, 85, 0.12);
  --shadow-hover: 0 8px 30px rgba(139, 115, 85, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; }

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

.text-center { text-align: center; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  display: block;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-full { width: 100%; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon { height: 40px; width: 40px; object-fit: cover; border-radius: 50%; vertical-align: middle; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
  font-weight: 400;
}
.nav-link:hover {
  color: var(--brown);
  background: var(--cream-dark);
}

.nav-cta {
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

.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: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  width: 100%;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 248, 240, 0.3);
  z-index: 1;
}
.hero-content, .hero-visual {
  position: relative;
  z-index: 2;
}
.hero-content {
  flex: 1;
  max-width: 560px;
  padding-left: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--terra); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.soap-card-big {
  background: var(--cream-dark);
  border: 2px solid var(--beige);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow);
}
.soap-icon-big { font-size: 5rem; margin-bottom: 16px; }
.soap-card-big p { color: var(--text-light); font-size: 1rem; line-height: 1.6; }
.soap-hero-img { width: 100%; border-radius: 16px; object-fit: cover; margin-bottom: 16px; }
.soap-hero-video { width: 100%; border-radius: 16px; object-fit: cover; margin-bottom: 16px; max-height: 280px; }
.sobre-mi-img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; display: block; }
.producto-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; }
.miel-img, .coco-img, .avena-img, .cacao-img, .caja-img, .carbon-img, .caspa-img, .curcuma-img, .infantil-img, .intimo-img, .pack-img, .shampo-img, .teverde-img {
  width: 100% !important;
  height: 260px !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
  object-fit: cover !important;
  display: block !important;
}

/* ===== INGREDIENTES ===== */
.ingredients {
  background: var(--brown);
  padding: 28px 0;
}
.ingredients .section-label {
  color: var(--beige);
  text-align: center;
  margin-bottom: 16px;
}
.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.ingredient {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
}

/* ===== SOBRE MÍ ===== */
.sobre-mi {
  padding: 100px 24px;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual {
  position: relative;
}
.sobre-img-placeholder {
  background: var(--cream-dark);
  border: 2px solid var(--beige);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.sobre-img-placeholder span { font-size: 5rem; }
.sobre-img-placeholder p { color: var(--text-light); text-align: center; font-size: 1.1rem; }
.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.sobre-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.sobre-text p { color: var(--text-light); margin-bottom: 16px; }
.sobre-list {
  list-style: none;
  margin: 24px 0 32px;
}
.sobre-list li {
  padding: 8px 0;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--beige);
}
.sobre-list li:last-child { border: none; }

/* ===== PROCESO ===== */
.proceso {
  background: var(--cream-dark);
  padding: 80px 24px;
}
.proceso h2 { margin-bottom: 50px; font-size: 2rem; }
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.paso {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.paso:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.paso-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--beige-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.paso h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--brown); }
.paso p { font-size: 0.9rem; color: var(--text-light); }

/* ===== CATÁLOGO ===== */
.catalogo {
  padding: 100px 24px;
}
.catalogo-sub {
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.catalogo h2 { margin-bottom: 12px; font-size: 2.2rem; }

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filtro-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--beige);
  background: transparent;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.filtro-btn:hover, .filtro-btn.active {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.producto-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
  display: flex;
  flex-direction: column;
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.producto-emoji { font-size: 2.8rem; margin-bottom: 12px; }

.producto-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--terra);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.badge-gold {
  background: #FFF3CD;
  color: #856404;
}

.producto-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}
.producto-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  flex: 1;
}

.producto-ingredientes {
  font-size: 0.78rem;
  color: var(--green-dark);
  background: #F0F6F0;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.producto-precio {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 18px;
}

.precio-antes {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

.btn-comprar {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--brown);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-comprar:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.pack-card { border: 2px solid var(--beige-dark); }

/* ===== QUIZ ===== */
.quiz-section {
  background: var(--cream-dark);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
}
.quiz-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.quiz-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 248, 240, 0.35);
  z-index: 1;
}
.quiz-section .container,
.quiz-section h2,
.quiz-section .quiz-sub,
.quiz-section .quiz-box,
.quiz-section .quiz-resultado {
  position: relative;
  z-index: 2;
}
.quiz-section .section-label {
  position: relative;
  z-index: 2;
}
.quiz-section h2 { margin-bottom: 12px; font-size: 2.2rem; }
.quiz-sub {
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.quiz-progress {
  height: 6px;
  background: var(--beige);
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--terra);
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 25%;
}

.quiz-step {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.quiz-question { font-size: 1.25rem; font-family: 'Playfair Display', serif; margin-bottom: 24px; color: var(--text); }

.quiz-options { display: flex; flex-direction: column; gap: 12px; }

.quiz-option {
  padding: 16px 20px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  background: transparent;
  font-family: 'Lato', sans-serif;
  text-align: left;
  color: var(--text);
}
.quiz-option:hover { border-color: var(--brown); background: var(--cream-dark); }
.quiz-option.selected { border-color: var(--brown); background: var(--cream-dark); color: var(--brown); font-weight: 700; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.quiz-resultado {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.resultado-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.resultado-content h3 { font-size: 1.6rem; color: var(--brown); margin-bottom: 12px; }
.resultado-content p { color: var(--text-light); margin-bottom: 20px; }
.resultado-producto {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.resultado-producto h4 { color: var(--terra); margin-bottom: 8px; }
.resultado-emoji { font-size: 3rem; margin-bottom: 16px; }

/* ===== TESTIMONIOS ===== */
.testimonios {
  padding: 100px 24px;
}
.testimonios h2 { margin-bottom: 50px; font-size: 2.2rem; }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--beige-dark);
  transition: var(--transition);
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.estrellas { font-size: 1rem; margin-bottom: 16px; }
.testimonio-card p { color: var(--text-light); font-style: italic; margin-bottom: 24px; font-size: 0.95rem; }
.testimonio-autor { display: flex; align-items: center; gap: 14px; }
.autor-avatar {
  width: 44px; height: 44px;
  background: var(--brown);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonio-autor strong { display: block; color: var(--text); }
.testimonio-autor span { font-size: 0.82rem; color: var(--text-light); }

/* ===== ENVÍOS ===== */
.envios {
  background: var(--cream-dark);
  padding: 100px 24px;
}
.envios h2 { margin-bottom: 50px; font-size: 2.2rem; }
.envios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.envio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.envio-card:hover { transform: translateY(-4px); }
.envio-icon { font-size: 2.4rem; margin-bottom: 14px; }
.envio-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--brown); }
.envio-card p { font-size: 0.87rem; color: var(--text-light); }

.pagos-section h3 { font-size: 1.5rem; margin-bottom: 28px; }
.pagos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.pago-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 130px;
  transition: var(--transition);
}
.pago-item:hover { transform: translateY(-3px); }
.pago-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.pago-logo svg { border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.pago-item span { font-size: 0.85rem; font-weight: 700; color: var(--text); text-align: center; }
.pago-numero { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; letter-spacing: 0.5px; }

/* ===== CONTACTO ===== */
.contacto {
  padding: 100px 24px;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacto-info h2 { font-size: 2rem; margin-bottom: 14px; }
.contacto-info > p { color: var(--text-light); margin-bottom: 36px; }
.contacto-items { display: flex; flex-direction: column; gap: 24px; }
.contacto-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contacto-item strong { display: block; color: var(--text); margin-bottom: 4px; }
.contacto-item a { display: block; color: var(--terra); font-size: 0.95rem; transition: var(--transition); }
.contacto-item a:hover { color: var(--brown-dark); }
.redes { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.redes a {
  padding: 6px 16px;
  background: var(--cream-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--brown);
  font-weight: 700;
  transition: var(--transition);
}
.redes a:hover { background: var(--brown); color: white; }

.contacto-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contacto-form-box h3 { font-size: 1.4rem; margin-bottom: 28px; color: var(--brown); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: var(--beige);
  padding: 70px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; }
.footer-redes { display: flex; gap: 14px; }
.footer-redes a {
  font-size: 1.4rem;
  transition: var(--transition);
  opacity: 0.7;
}
.footer-redes a:hover { opacity: 1; transform: scale(1.15); }
.footer h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: 'Lato', sans-serif; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contacto p, .footer-contacto a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover, .footer-contacto a:hover { color: var(--beige); }
.footer-contacto { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== HIDDEN (filtros) ===== */
.producto-card.hidden {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .proceso-grid { grid-template-columns: repeat(2, 1fr); }
  .envios-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--beige);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 20px; border-radius: var(--radius-sm); }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; margin-top: 8px; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-badge-float { right: 0; }

  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }

  .testimonios-grid { grid-template-columns: 1fr; }
  .proceso-grid { grid-template-columns: 1fr 1fr; }
  .envios-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .quiz-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .proceso-grid { grid-template-columns: 1fr; }
  .envios-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .sobre-img-placeholder { height: 280px; }
}

/* ===== TARJETA COCO - imagen grande y texto transparente ===== */
.coco-card {
  padding-top: 0;
  overflow: hidden;
}
.coco-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.coco-img {
  width: 100% !important;
  height: 260px !important;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  display: block;
}
.coco-text {
  opacity: 1;
}

/* ===== TARJETA MIEL - imagen grande ===== */
.miel-card {
  padding-top: 0;
  overflow: hidden;
}
.miel-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.miel-img {
  width: 100% !important;
  height: 260px !important;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  display: block;
}

/* ===== TARJETA AVENA - imagen grande ===== */
.avena-card {
  padding-top: 0;
  overflow: hidden;
}
.avena-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.avena-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA CACAO - imagen grande ===== */
.cacao-card {
  padding-top: 0;
  overflow: hidden;
}
.cacao-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.cacao-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA CAJA - imagen grande ===== */
.caja-card {
  padding-top: 0;
  overflow: hidden;
}
.caja-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.caja-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA CARBÓN ACTIVADO - imagen grande ===== */
.carbon-card {
  padding-top: 0;
  overflow: hidden;
}
.carbon-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.carbon-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA CASPA - imagen grande ===== */
.caspa-card {
  padding-top: 0;
  overflow: hidden;
}
.caspa-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.caspa-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA CÚRCUMA - imagen grande ===== */
.curcuma-card {
  padding-top: 0;
  overflow: hidden;
}
.curcuma-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.curcuma-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA INFANTIL - imagen grande ===== */
.infantil-card {
  padding-top: 0;
  overflow: hidden;
}
.infantil-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.infantil-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA ÍNTIMO - imagen grande ===== */
.intimo-card {
  padding-top: 0;
  overflow: hidden;
}
.intimo-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.intimo-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA PACK - imagen grande ===== */
.pack-img-card {
  padding-top: 0;
  overflow: hidden;
}
.pack-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.pack-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA SHAMPOO - imagen grande ===== */
.shampo-card {
  padding-top: 0;
  overflow: hidden;
}
.shampo-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.shampo-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== TARJETA TÉ VERDE - imagen grande ===== */
.teverde-card {
  padding-top: 0;
  overflow: hidden;
}
.teverde-img-wrap {
  margin: 0 -24px 16px -24px;
  font-size: 0;
}
.teverde-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== SECCIÓN DESCUBRE ===== */
.descubre-section {
  padding: 80px 0;
  background: var(--cream);
}
.descubre-sub {
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.descubre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.descubre-categoria {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.descubre-categoria h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 10px;
}
.descubre-categoria ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.descubre-categoria ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f0eb;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.descubre-categoria ul li:last-child {
  border-bottom: none;
}
.descubre-categoria ul li strong {
  color: var(--brown);
}
