* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FAF6ED;
  color: #260a43;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #260a43;
  color: #FAF6ED;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px;
  font-size: 0.9rem;
  position: relative;
}

.close-bar {
  background: none;
  border: none;
  color: #FAF6ED;
  font-size: 1rem;
  cursor: pointer;
}


/* Header */
.header {
  background-color: #f8f3fd;
  border-bottom: 1px solid #DDD1D1;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #260a43;
}

.nav a {
  margin: 0 12px;
  font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background-color: #aa7b1b;
  color: #FAF6ED;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(170, 123, 27, 0.45);
}

.btn-secondary {
  background-color: #63497F;
  color: #FAF6ED;
}

/* Hero */
/* Hero */
.hero {
  position: relative;
  background-color: #E9ECEF;
  padding: 120px 20px;
  overflow: hidden;
}

/* Contenedor del texto */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.4rem;
  color: #260a43;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #260a43;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Fondo con imágenes */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Estilo común de imágenes */
.hero-bg {
  position: absolute;
  max-width: 420px;
  width: 100%;
  height: auto;
  opacity: 0.25;              /* TENUES */
  filter: blur(0.6px);
}

/* Colágeno */
.hero-bg-colageno {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* Omega */
.hero-bg-omega {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}


/* Benefits */
.benefits {
  background-color: #FAF6ED;
  padding: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: center;
}

.benefit span {
  font-size: 36px;
  color: #aa7b1b;
  margin-bottom: 8px;
}

/* =========================
   PRODUCTS
========================= */

.products {
  background-color: #E9ECEF;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.products h2 {
  text-align: center;
  color: #260a43;
  margin-bottom: 50px;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.product-card {
  background-color: #FAF6ED;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(38, 10, 67, 0.08);
  display: flex;
  flex-direction: column;
}

/* Imagen del producto */
.product-image {
  background-color: #f8f3fd;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
}

/* Imagen */
.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;            /* suaviza esquinas */
  background-color: #ffffff;      /* efecto “tarjeta” */
  padding: 12px;                  /* aire visual */
}

/* Contenido */

/* Título */
.product-content h3 {
  color: #63497F;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

/* Texto */

.product-content .price {
  font-size: 2rem;
  font-weight: 700;
  color: #aa7b1b;
  margin-bottom: 18px;
}

/* Botón */
.product-content .btn-primary {
  display: inline-block;
  margin: 0 auto;
}

.product-stack {
  position: relative;
  width: 100%;
  height: 260px;
}

.stack-img {
  position: absolute;
  max-width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
}

.img-front {
  z-index: 2;
}

.img-back {
  transform: translate(-60%, -55%) scale(0.95);
  opacity: 0.85;
}



/* CTA */
.cta {
  background-color: #f8f3fd;
  padding: 60px 0;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #260a43;
  color: #FAF6ED;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #DDD1D1;
}

/* =========================
   FAQ SECTION
========================= */

.faq {
  background-color: #FAF6ED; /* fondo suave */
  padding: 64px 20px;
  font-family: 'Montserrat', sans-serif;
}

.faq h2 {
  text-align: center;
  color: #260a43;
  font-size: 2rem;
  margin-bottom: 48px;
}

.faq-item {
  max-width: 960px;
  margin: 0 auto 24px auto;
  background-color: #f8f3fd;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 6px 18px rgba(38, 10, 67, 0.06);
}

.faq-item h3 {
  color: #63497F;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  color: #260a43;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .faq {
    padding: 48px 16px;
  }

  .faq h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #63497F;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .material-icons {
  transform: rotate(180deg);
}

/* Sticky CTA Bottom */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #25d366; /* verde WhatsApp */
  text-align: center;
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.18);
}

.sticky-cta a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.sticky-cta a strong {
  font-weight: 700;
}

.sticky-cta:hover {
  background: #1ebe5d;
}

/* Evita que tape el footer */
body {
  padding-bottom: 64px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #f8f3fd;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 16px;
  }

  .nav.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 60px 16px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    max-width: 160px;
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-bg {
    max-width: 260px;
    opacity: 0.18;
  }

  .hero-bg-colageno {
    left: -40px;
  }

  .hero-bg-omega {
    right: -40px;
  }
}
/* Desktop */
@media (min-width: 992px) {
  .sticky-cta {
    font-size: 0.95rem;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FAF6ED;
  color: #260a43;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #260a43;
  color: #FAF6ED;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px;
  font-size: 0.9rem;
  position: relative;
}

.close-bar {
  background: none;
  border: none;
  color: #FAF6ED;
  font-size: 1rem;
  cursor: pointer;
}


/* Header */
.header {
  background-color: #f8f3fd;
  border-bottom: 1px solid #DDD1D1;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #260a43;
}

.nav a {
  margin: 0 12px;
  font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background-color: #aa7b1b;
  color: #FAF6ED;
}

.btn-secondary {
  background-color: #63497F;
  color: #FAF6ED;
}

/* Hero */
/* Hero */
.hero {
  position: relative;
  background-color: #E9ECEF;
  padding: 120px 20px;
  overflow: hidden;
}

/* Contenedor del texto */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.4rem;
  color: #260a43;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #260a43;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Fondo con imágenes */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Estilo común de imágenes */
.hero-bg {
  position: absolute;
  max-width: 420px;
  width: 100%;
  height: auto;
  opacity: 0.25;              /* TENUES */
  filter: blur(0.6px);
}

/* Colágeno */
.hero-bg-colageno {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* Omega */
.hero-bg-omega {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}


/* Benefits */
.benefits {
  background-color: #FAF6ED;
  padding: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: center;
}

.benefit span {
  font-size: 36px;
  color: #aa7b1b;
  margin-bottom: 8px;
}

/* =========================
   PRODUCTS
========================= */

.products {
  background-color: #E9ECEF;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.products h2 {
  text-align: center;
  color: #260a43;
  margin-bottom: 50px;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.product-card {
  background-color: #FAF6ED;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(38, 10, 67, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Descuento Pack 2 */
.products-grid article:nth-child(2)::after {
  content: "AHORRA 20%";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #aa7b1b;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.products-grid article:nth-child(2) {
  border: 2px solid #aa7b1b;
  transform: scale(1.03);
}
/* Descuento Pack 3 */
.products-grid article:nth-child(3)::before {
  content: "MEJOR PRECIO POR FRASCO";
  position: absolute;
  top: 16px;
  left: -6px;
  background: #9d0208;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
}

/* Imagen del producto */
.product-image {
  background-color: #f8f3fd;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}

/* Imagen */
.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;            /* suaviza esquinas */
  background-color: #ffffff;      /* efecto “tarjeta” */
  padding: 12px;                  /* aire visual */
}

/* Contenido */
.product-content {
  padding: 18px;
  flex-grow: 1;
  text-align: center;
}
.product-content::after {
  display: block;
  margin-top: 14px;
  font-size: 0.75rem;
  color: #9d0208;
  font-weight: 600;
}

/* Título */
.product-content h3 {
  color: #63497F;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

/* Texto */
.product-content p {
  color: #260a43;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Botón */
.product-content .btn-primary {
  display: inline-block;
  margin: 0 auto;
}

.product-stack {
  position: relative;
  width: 100%;
  height: 260px;
}

.stack-img {
  position: absolute;
  max-width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
}

.img-front {
  z-index: 2;
}

.img-back {
  transform: translate(-60%, -55%) scale(0.95);
  opacity: 0.85;
}



/* CTA */
.cta {
  background-color: #f8f3fd;
  padding: 60px 0;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #260a43;
  color: #FAF6ED;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #DDD1D1;
}

/* =========================
   FAQ SECTION
========================= */

.faq {
  background-color: #FAF6ED; /* fondo suave */
  padding: 64px 20px;
  font-family: 'Montserrat', sans-serif;
}

.faq h2 {
  text-align: center;
  color: #260a43;
  font-size: 2rem;
  margin-bottom: 48px;
}

.faq-item {
  max-width: 960px;
  margin: 0 auto 24px auto;
  background-color: #f8f3fd;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 6px 18px rgba(38, 10, 67, 0.06);
}

.faq-item h3 {
  color: #63497F;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  color: #260a43;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .faq {
    padding: 48px 16px;
  }

  .faq h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #63497F;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .material-icons {
  transform: rotate(180deg);
}

/* Sticky CTA Bottom */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #25d366; /* verde WhatsApp */
  text-align: center;
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.18);
}

.sticky-cta a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.sticky-cta a strong {
  font-weight: 700;
}

.sticky-cta:hover {
  background: #1ebe5d;
}

/* Evita que tape el footer */
body {
  padding-bottom: 64px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #f8f3fd;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 16px;
  }

  .nav.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 60px 16px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    max-width: 160px;
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-bg {
    max-width: 260px;
    opacity: 0.18;
  }

  .hero-bg-colageno {
    left: -40px;
  }

  .hero-bg-omega {
    right: -40px;
  }
}
/* Desktop */
@media (min-width: 992px) {
  .sticky-cta {
    font-size: 0.95rem;
  }
}

/* =========================
   CONVERSION BOOST
========================= */

/* Precio antiguo */
.old-price {
  font-size: 0.9rem;
  color: #8e8e8e;
  text-decoration: line-through;
  margin-bottom: 4px;
}

/* Precio actual */
.price {
  font-size: 2rem;
  font-weight: 700;
  color: #260a43;
  margin-bottom: 6px;
}

/* Ahorro visible */
.saving {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e7f5c; /* verde confianza */
  margin-bottom: 18px;
}

.percent {
  font-size: 0.8rem;
  color: #1e7f5c;
  font-weight: 600;
  margin-bottom: 12px;
}

/* =========================
   BADGES
========================= */

.badge {
  display: inline-block;
  background: #aa7b1b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.badge.best {
  background: #63497F;
}

/* =========================
   PRODUCT CARD HIGHLIGHT
========================= */

/* Tarjeta destacada (Pack 2) */
.product-card.featured {
  transform: scale(1.05);
  border: 2px solid #aa7b1b;
  box-shadow: 0 16px 32px rgba(170, 123, 27, 0.25);
  position: relative;
}


/* =========================
   CTA OPTIMIZATION
========================= */

.product-content .btn-primary {
  width: 100%;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover psicológico */
.product-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(38, 10, 67, 0.25);
}

/* CTA Hero */
.cta-group .btn-primary {
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(170, 123, 27, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(170, 123, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(170, 123, 27, 0); }
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */

@media (max-width: 768px) {
  .product-card.featured {
    transform: scale(1);
  }

  .product-card.featured::before {
    display: none;
  }

  .price {
    font-size: 1.8rem;
  }
}

.micro-trust {
  font-size: 0.8rem;
  color: #63497F;
  margin-top: 8px;
}
.logic {
  font-size: 0.85rem;
  color: #260a43;
  font-weight: 500;
}

.btn-whatsapp-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp-quick:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37,211,102,0.45);
}

/* =========================
   HERO PRODUCT (VARIANTE)
========================= */

.hero.hero-product {
  padding: 120px 20px 100px;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

/* Imagen del producto en hero */
.hero-product-image {
  display: flex;
  justify-content: center;
}

.hero-product-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 22px 44px rgba(38, 10, 67, 0.18);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-product-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-product-image {
    order: -1;
    margin-bottom: 24px;
  }

  .hero-product-image img {
    max-width: 260px;
  }
}
/* =========================
   TESTIMONIOS
========================= */

.testimonials {
  background: #FAF6ED;
  padding: 80px 20px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-subtitle {
  margin-top: 10px;
  color: #260a43;
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.testimonial-card {
  background: #f8f3fd;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(38, 10, 67, 0.08);
}

.testimonial-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 2px solid #E9ECEF;
}

.testimonial-name {
  font-weight: 700;
  color: #260a43;
  line-height: 1.1;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #63497F;
  margin-top: 2px;
}

.stars {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  color: #aa7b1b;
}

.stars-score {
  margin-left: 8px;
  font-size: 0.85rem;
  color: #260a43;
  opacity: 0.85;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #260a43;
  line-height: 1.7;
  margin-top: 8px;
}

.testimonial-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.proof-badge {
  font-size: 0.78rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #DDD1D1;
  color: #260a43;
  padding: 6px 10px;
  border-radius: 999px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 28px;
}

.mini-urgency {
  font-weight: 700;
  color: #9d0208;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 16px;
  }
}
/* =========================
   BENEFITS – CONVERSION
========================= */

.content-benefits {
  padding: 80px 20px;
}
.benefits-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}

.benefits-intro h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.benefits-subtitle {
  font-size: 0.95rem;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-card {
  background: #f8f3fd;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(38, 10, 67, 0.05);
}
.benefit-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}
.benefit-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #260a43;
}

.benefit-card p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: #260a43;
}

.benefits-proof {
  text-align: center;
  font-size: 0.85rem;
  color: #1e7f5c;
  font-weight: 600;
  margin-bottom: 28px;
}

.benefits-cta {
  text-align: center;
}

.benefits-cta .btn-primary {
  padding: 14px 28px;
  font-size: 1rem;
}

.benefits-cta .micro-trust {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #63497F;
}
/* =========================
   DELIVERY PAGE (ZONAS)
========================= */

.delivery-hero {
  padding: 90px 20px;
}

.delivery-info,
.delivery-zones,
.delivery-policies {
  padding: 64px 20px;
  background: #FAF6ED;
}

.delivery-info h2,
.delivery-zones h2,
.delivery-policies h2 {
  text-align: center;
  margin-bottom: 18px;
}

.subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px auto;
  color: #260a43;
  opacity: 0.9;
}

/* Steps */
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.step-card {
  background: #f8f3fd;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 6px 18px rgba(38,10,67,0.06);
  text-align: center;
}

.step-card .material-icons {
  font-size: 34px;
  color: #aa7b1b;
  margin-bottom: 8px;
}

.step-card h3 {
  color: #63497F;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.step-card p {
  font-size: 0.92rem;
  margin: 0;
}

.delivery-note {
  margin-top: 18px;
  background: #E9ECEF;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
}

/* Zones grid */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.zone-card {
  background: #f8f3fd;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 6px 18px rgba(38,10,67,0.06);
}

.zone-card h3 {
  color: #63497F;
  margin-bottom: 10px;
}

.zone-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-card li {
  padding: 7px 0;
  border-bottom: 1px dashed #DDD1D1;
  font-size: 0.95rem;
}

.zone-card li:last-child {
  border-bottom: none;
}

/* CTA box */
.delivery-cta-box {
  margin-top: 26px;
  background: #E9ECEF;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.delivery-cta-box h3 {
  color: #260a43;
  margin-bottom: 8px;
}

.delivery-cta-box p {
  margin-bottom: 14px;
}

/* Policies */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.policy-card {
  background: #f8f3fd;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 6px 18px rgba(38,10,67,0.06);
}

.policy-card h3 {
  color: #63497F;
  margin-bottom: 8px;
}

.policy-card p {
  margin: 0;
  font-size: 0.95rem;
}
/* Textos de confianza y notas pequeñas */
.cta-trust{
  margin-top: 14px;
  font-size: 0.92rem;
  color: #260a43;
  opacity: 0.95;
}

.fine-print{
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* Links dentro de cajas/coverage */
.local-coverage a{
  text-decoration: underline;
  color: #260a43;
}
.fine-print{
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 10px;
}
.faq-qtext{ font-size:1.05rem; font-weight:600; }
/* Header CTA buttons alignment */
.header-content {
  gap: 16px;
}

.header .cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.header .cta-group a {
  white-space: nowrap;
}

/* Mobile: que se ordenen bonito */
@media (max-width: 768px) {
  .header .cta-group {
    display: none; /* opcional: ocultar esos botones en móvil y dejar solo sticky CTA */
  }
}
/* =========================
   ABOUT STORY (SOBRE FAVIOFRA)
========================= */
.about-story{
  background:#FAF6ED;
  padding:80px 20px;
}

.about-story-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:28px;
  align-items:start;
}

.about-story-content h2{
  font-size:1.8rem;
  margin-bottom:14px;
  color:#260a43;
}

.about-story-content p{
  margin-bottom:12px;
  font-size:0.98rem;
  line-height:1.75;
  color:#260a43;
  opacity:0.95;
}

.about-invite{
  font-weight:600;
  color:#63497F;
}

.about-cta{
  margin-top:16px;
}

.about-story-video .video-frame{
  background:#ffffff;
  border-radius:18px;
  padding:12px;
  box-shadow:0 14px 34px rgba(38, 10, 67, 0.12);
  overflow:hidden;
}

.about-story-video iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:14px;
}

.video-caption{
  margin-top:10px;
  font-size:0.88rem;
  color:#63497F;
  text-align:center;
}

/* Mobile */
@media (max-width: 768px){
  .about-story-grid{
    grid-template-columns:1fr;
  }
}
/* Mini enlace debajo del hero (confianza + branding) */
.hero-mini {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
  text-align: center;
  color: #e9ecef;
}

.hero-mini a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: all 0.25s ease;
}

.hero-mini a:hover {
  opacity: 0.8;
  border-bottom: 1px solid rgba(255,255,255,0.7);
}
