/* ============================================================
   PALO ROSA — sections.css
   Estilos por sección: navbar, hero, collections, educational,
   blog, benefits, newsletter, footer
   ============================================================ */

/* ====================================================
   NAVBAR
   ==================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: var(--z-overlay);
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,183,197,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.is-scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #FAF7F2;
  line-height: 1;
}
.navbar__logo-wordmark span { color: var(--rosa); }

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: rgba(250,247,242,0.60);
  padding: 0.5rem 0.75rem;
  transition: color 0.25s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--rosa);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.navbar__link:hover,
.navbar__link.is-active { color: var(--rosa); }
.navbar__link.is-active::after { width: 60%; }
.navbar__link-sep {
  color: rgba(255,183,197,0.25);
  font-size: 0.625rem;
}

/* Active section underline indicator */
.navbar__indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--rosa-principal);
  border-radius: 1px;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
}

/* Icons */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__icon-btn {
  position: relative;
  width: 2.25rem; height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.60);
  border-radius: 50%;
  transition: var(--transition-base);
}
.navbar__icon-btn:hover { color: var(--rosa); background: rgba(255,183,197,0.08); }

.navbar__badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 1rem; height: 1rem;
  background: var(--rosa-principal);
  color: var(--crema);
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(250,247,242,0.75);
  border-radius: 1px;
  transition: var(--transition-base);
}
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-overlay) + 10);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.is-open { visibility: visible; pointer-events: all; }
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(360px, 100%);
  background: #0F0F0F;
  border-left: 1px solid rgba(255,183,197,0.10);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu__nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #FAF7F2;
  transition: color 0.25s;
}
.mobile-menu__nav a:hover { color: var(--rosa); }

/* ====================================================
   HERO — Video Background
   ==================================================== */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.72) 45%,
    rgba(10,10,10,0.35) 100%
  );
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; }

/* ====================================================
   HERO — Dark Premium
   ==================================================== */


.hero {
  position: relative;
  min-height: 100vh;
  background: #0A0A0A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Canvas interactivo de partículas */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Inner grid layout */
.hero__inner {
  flex: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--navbar-h) + 5rem) var(--section-pad-x) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero centrado — sin botella, solo texto */
.hero--video-only .hero__inner,
.hero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 860px;
  text-align: center;
  padding-top: calc(var(--navbar-h) + 6rem);
}
.hero__text--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__text--wide .hero__eyebrow { margin-bottom: 1.25rem; }
.hero__text--wide .hero__body { max-width: 520px; margin: 0 auto; }
.hero__text--wide .hero__cta { justify-content: center; }

/* ── Efecto 3D / luminoso en el headline ── */
@keyframes heroHeadlineIn {
  from { opacity: 0; transform: perspective(600px) rotateX(12deg) translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: perspective(600px) rotateX(0deg)  translateY(0);   filter: blur(0); }
}
.hero__headline--3d {
  animation: heroHeadlineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-style: preserve-3d;
  will-change: transform;
  transition: text-shadow 0.1s ease;
}
/* Sombra luminosa que se mueve con el cursor (via JS) */
.hero__headline--3d em {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #E5E2E1 0%,
    var(--rosa-principal) 40%,
    #E5E2E1 70%,
    var(--rosa-claro) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradShift 4s ease-in-out infinite alternate;
}
@keyframes heroGradShift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* Texto */
.hero__text { order: 1; }
.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInLeft 0.8s ease 0.1s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300;
  color: #E5E2E1;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  opacity: 0;
  text-shadow: 0 0 20px rgba(236, 189, 164, 0.3), 0 0 40px rgba(236, 189, 164, 0.15);
  animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--rosa-soft);
}
.hero__body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--crema-mid);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.35s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.45s forwards;
}

/* Ghost button variant for dark hero */
.btn-ghost--light {
  background: transparent;
  color: var(--crema-mid);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: color 0.25s;
  text-decoration: none;
}
.btn-ghost--light:hover { color: #FAF7F2; }
.btn-ghost--light span { color: var(--rosa); }

/* Imagen / frasco */
.hero__image-wrap {
  order: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 50vh, 560px);
  opacity: 0;
  animation: fadeIn 1.1s ease 0.3s forwards;
}
.hero__glow {
  position: absolute;
  width: clamp(280px, 40vw, 520px);
  height: clamp(280px, 40vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,160,0.13) 0%, rgba(212,175,55,0.04) 45%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero__bottle-wrap {
  position: relative;
  z-index: 1;
}
.hero__bottle-wrap.anim-float {
  animation: float 5s ease-in-out infinite, fadeIn 1.1s ease 0.3s both;
}
.hero__bottle {
  width: clamp(180px, 20vw, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 48px 80px rgba(232,160,160,0.22)) drop-shadow(0 0 40px rgba(232,160,160,0.08));
  will-change: transform;
}

/* Stats row */
.hero__stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--borde);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem var(--section-pad-x);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FAF7F2;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crema-dim);
}
.hero__stat-div {
  width: 1px;
  height: 2rem;
  background: var(--borde);
  flex-shrink: 0;
}

/* Marquee barra inferior */
.hero__marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--borde);
  height: 2.25rem;
  background: rgba(255,255,255,0.018);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.hero__marquee-inner:hover { animation-play-state: paused; }
.hero__marquee-item {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--crema-dim);
  padding: 0 2rem;
}

/* ====================================================
   COLLECTIONS (catálogo)
   ==================================================== */

.collections {
  background: #0A0A0A;
  padding: var(--section-pad-y) var(--section-pad-x);
}
.collections__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.collections__header {
  text-align: center;
  margin-bottom: 3rem;
}
.collections__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: #FAF7F2;
}
.collections__title em { font-style: italic; }

/* Eyebrow del catálogo */
.collections__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 0.75rem;
  display: block;
}

/* Tabs */
.collections__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.collections__tab {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  color: rgba(250,247,242,0.50);
  transition: var(--transition-base);
  border: 1px solid rgba(255,183,197,0.12);
}
.collections__tab.is-active {
  background: var(--rosa);
  color: #0A0A0A;
  border-color: var(--rosa);
}
.collections__tab:hover:not(.is-active) {
  color: var(--rosa);
  border-color: rgba(255,183,197,0.30);
}

/* Filtros toggle */
.collections__filter-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.collections__filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(250,247,242,0.45);
  transition: color 0.25s;
}
.collections__filter-toggle-btn:hover { color: var(--rosa); }

/* Panel de filtros */
.collections__filters {
  background: #121212;
  border: 1px solid rgba(255,183,197,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: none;
}
.collections__filters.is-open { display: block; animation: fadeIn 0.3s ease; }
.collections__filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.collections__filter-group p {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.collections__filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.collections__chip {
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.04);
  color: rgba(250,247,242,0.50);
  transition: var(--transition-base);
  border: 1px solid rgba(255,183,197,0.10);
}
.collections__chip.is-active {
  background: var(--rosa);
  color: #0A0A0A;
  border-color: var(--rosa);
}
.collections__chip:hover:not(.is-active) {
  color: var(--rosa);
  border-color: rgba(255,183,197,0.30);
}

/* Grid de productos — 4 columnas fijas en desktop */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.collections__empty {
  text-align: center;
  color: var(--gris-medio);
  padding: 4rem 0;
  font-size: 0.9375rem;
  display: none;
}
.collections__empty.is-visible { display: block; }

/* ====================================================
   EDUCATIONAL
   ==================================================== */

.educational {
  background: var(--negro);
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}
.educational__blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.educational__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.educational__header {
  text-align: center;
  margin-bottom: 4rem;
}
.educational__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
}
.educational__title em { font-style: italic; }
.educational__title span { color: var(--rosa-principal); }
.educational__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.educational__card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.educational__card:hover { border-color: var(--rosa-principal); }
.educational__card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--rosa-principal);
  width: 44px; height: 44px;
  background: rgba(232,160,160,0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.educational__card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.educational__card-text {
  font-size: 0.875rem;
  color: var(--gris-claro);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.educational__card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rosa-principal);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.25s;
}
.educational__card-link svg { transition: transform 0.25s; }
.educational__card:hover .educational__card-link { color: var(--rosa-claro); }
.educational__card:hover .educational__card-link svg { transform: translateX(4px); }

/* ====================================================
   SECCIÓN RESEÑAS
   ==================================================== */

.seccion-resenas {
  background: var(--bg-surface);
  padding: 8rem var(--section-pad-x);
}
.seccion-resenas__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.seccion-resenas__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.seccion-resenas__eyebrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1rem;
  display: block;
}
.seccion-resenas__titulo {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.seccion-resenas__titulo em  { font-style: italic; font-weight: 300; }
.seccion-resenas__titulo strong { font-weight: 600; }

/* Rating global */
.seccion-resenas__rating-global {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.seccion-resenas__estrellas {
  display: flex;
  gap: 2px;
}
.seccion-resenas__rating-num {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--crema-mid);
}
.seccion-resenas__rating-count {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--crema-dim);
}

/* Grid */
.seccion-resenas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Card de reseña */
.resena-card {
  background: var(--bg-card);
  border: 1px solid var(--borde);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.resena-card:hover {
  border-color: var(--borde-hover);
  transform: translateY(-3px);
}
.resena-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resena-card__estrellas {
  display: flex;
  gap: 2px;
}
.resena-card__badge {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
}
.resena-card__badge--nicho    { border-color: rgba(229,229,229,0.25); color: #E5E5E5; }
.resena-card__badge--disenador{ border-color: rgba(252,213,206,0.25); color: #FCD5CE; }
.resena-card__badge--arabe    { border-color: rgba(212,175,55,0.25);  color: #D4AF37; }

.resena-card__perfume {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--crema);
  letter-spacing: 0.02em;
}
.resena-card__texto {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--crema-mid);
  line-height: 1.9;
  flex-grow: 1;
  quotes: "\201C" "\201D";
}
.resena-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--borde);
  margin-top: auto;
}
.resena-card__nombre {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--crema);
}
.resena-card__ciudad {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--crema-dim);
}
.resena-card__fecha {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6875rem;
  color: var(--crema-dim);
  margin-left: auto;
}
.resena-card__verificada {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.625rem;
  color: #4CAF50;
  width: 100%;
}

/* Dots carrusel mobile */
.seccion-resenas__dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2rem;
}
.seccion-resenas__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--borde);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.seccion-resenas__dot.is-active {
  background: var(--rosa);
  border-color: var(--rosa);
}

/* Botón ver más */
.seccion-resenas__ver-mas-wrap {
  text-align: center;
  margin-top: 1rem;
}
.seccion-resenas__ver-mas {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--rosa-soft);
  background: none;
  border: none;
  border-bottom: 1px solid var(--borde);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.seccion-resenas__ver-mas:hover {
  color: var(--rosa);
  border-color: var(--rosa);
}

/* Reseñas extra (localStorage) */
.seccion-resenas__extra {
  margin-top: 2rem;
}
.seccion-resenas__extra .resena-card {
  animation: fadeInUp 0.5s ease forwards;
}

/* ====================================================
   BENEFITS
   ==================================================== */

.benefits {
  background: #0A0A0A;
  padding: 4rem var(--section-pad-x);
  border-top: 1px solid rgba(255,183,197,0.10);
  border-bottom: 1px solid rgba(255,183,197,0.10);
}
.benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.benefits__item { text-align: center; }
.benefits__icon {
  display: inline-flex;
  color: var(--rosa);
  margin-bottom: 1rem;
}
.benefits__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 0.25rem;
}
.benefits__desc {
  font-size: 0.8125rem;
  color: var(--crema-dim);
  line-height: 1.6;
}

/* ====================================================
   NEWSLETTER
   ==================================================== */

.newsletter {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) var(--section-pad-x);
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A1515 100%);
}
.newsletter__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(4px);
}
.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__eyebrow {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--rosa-claro);
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}
.newsletter__title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  color: #fff;
  margin-bottom: 1.5rem;
}
.newsletter__body {
  font-size: 0.9375rem;
  color: var(--gris-claro);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 1rem;
}
.newsletter__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: #fff;
  font-size: 0.875rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  transition: border-color 0.25s;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__input:focus { border-color: var(--rosa-principal); }
.newsletter__btn {
  padding: 0.875rem 1.75rem;
  background: var(--rosa-principal);
  color: var(--crema);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--rosa-oscuro); }
.newsletter__fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.newsletter__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--rosa-claro);
  font-size: 1.125rem;
  animation: fadeIn 0.5s ease;
}
.newsletter__success.is-visible { display: flex; }

/* ====================================================
   FOOTER
   ==================================================== */

.footer {
  background: var(--negro);
  border-top: 2px solid var(--rosa-principal);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem var(--section-pad-x) 2rem;
}
.footer__top {
  text-align: center;
  margin-bottom: 3rem;
}
.footer__logo-word {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.footer__logo-word span { color: var(--rosa-principal); }
.footer__tagline {
  font-family: var(--font-script);
  font-size: 1.125rem;
  color: var(--rosa-claro);
  font-style: italic;
  margin-top: 0.25rem;
}
.footer__divider {
  height: 1px;
  background: #2A2A2A;
  margin: 2rem 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 200px;
}
.footer__socials {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.footer__social {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-medio);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.footer__social:hover {
  background: var(--rosa-principal);
  color: var(--crema);
  transform: translateY(-2px);
}
.footer__col-title {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-claro);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  font-size: 0.875rem;
  color: var(--gris-medio);
  transition: color 0.25s;
}
.footer__link:hover { color: var(--rosa-claro); }
.footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gris-medio);
}
.footer__contact-item a:hover { color: var(--rosa-claro); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy { font-size: 0.75rem; color: var(--gris-claro); }
.footer__love { font-size: 0.75rem; color: #2A2A2A; }
