/* ============================================================
   SISTEMA DE DISEÑO — VARIABLES
============================================================ */
:root {
  /* Marca - principales */
  --rosa: #FFCDCE;
  --verde-menta: #C2EAC1;
  --gris-marca: #D9D9D9;

  /* Marca - refuerzo */
  --lila: #EEAFFF;
  --amarillo: #FFE88B;

  /* Sistema */
  --blanco: #FFFFFF;
  --crema: #FBF8F4;
  --tinta: #1A1A1A;
  --tinta-suave: #4A4A4A;
  --linea: #E8E4DE;

  /* Tipografías */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Espaciado */
  --container-padding: clamp(1.5rem, 5vw, 6rem);
  --section-py: clamp(6rem, 12vw, 10rem);
  --gap: clamp(1rem, 2vw, 2rem);

  /* Nav */
  --marquee-height: 44px;
  --nav-height: 80px;
  --nav-height-small: 60px;
}

/* ============================================================
   RESET Y BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Lenis maneja el scroll */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--tinta);
  background-color: var(--crema);
  overflow-x: hidden;
  cursor: none; /* cursor custom en desktop */
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: none;
  font-family: inherit;
}

@media (pointer: coarse) {
  button { cursor: pointer; }
}

/* ============================================================
   ACCESIBILIDAD
============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--tinta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced motion: desactivar todo */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* ============================================================
   TIPOGRAFÍA BASE
============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 11vw, 9rem); }
h2 { font-size: clamp(2rem, 6vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }

em {
  font-style: italic;
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tinta-suave);
}

/* ============================================================
   CURSOR CUSTOM
============================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--tinta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    background 0.25s ease,
    border 0.25s ease;
  will-change: transform;
}

.cursor.expanded {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--tinta);
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   BOTONES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  .btn { cursor: pointer; }
}

/* Botón primario (WhatsApp) */
.btn--primary {
  background: var(--tinta);
  color: var(--crema);
  border: 1.5px solid var(--tinta);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rosa);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.btn--primary:hover::before { transform: scaleY(1); }

.btn--primary:hover { color: var(--tinta); border-color: var(--tinta); }

.btn--primary {
  isolation: isolate;
  color: var(--crema);
  transition: color 0.35s cubic-bezier(0.76, 0, 0.24, 1), border-color 0.35s ease;
}

/* WhatsApp (nav y verde menta) */
.btn--whatsapp {
  background: var(--verde-menta);
  color: var(--tinta);
  border: 1.5px solid transparent;
  padding: 0.6rem 1.5rem;
}

.btn--whatsapp:hover {
  background: var(--tinta);
  color: var(--crema);
}

/* Botón texto link */
.btn--text {
  background: transparent;
  color: var(--tinta);
  padding: 0.875rem 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}

.btn--text:hover {
  text-decoration-color: var(--tinta);
}

/* Botón grande (CTA final) */
.btn--grande {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  padding: 1.125rem 3rem;
}

/* ============================================================
   NAVEGACIÓN
============================================================ */
.nav {
  position: fixed;
  top: var(--marquee-height);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: height 0.4s ease, backdrop-filter 0.4s ease, background 0.4s ease;
}

.nav.scrolled {
  height: var(--nav-height-small);
  background: rgba(251, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--linea);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--tinta);
}

.nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--tinta-suave);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tinta);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--tinta);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

/* Burger mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--tinta);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Menú mobile */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--crema);
  padding: 3rem var(--container-padding);
  flex-direction: column;
  gap: 2rem;
  z-index: 99;
  transition: opacity 0.3s ease;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__mobile .nav__link {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--tinta);
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--marquee-height));
  padding-bottom: var(--section-py);
  position: relative;
  background: var(--crema);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__eyebrow {
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  /* overflow: hidden en cada línea lo maneja JS con SplitType */
}

/* Máscara por línea — JS añade .line con overflow:hidden */
.hero__title .line {
  overflow: hidden;
  display: block;
}

.hero__subtitle {
  max-width: 58ch;
  color: var(--tinta-suave);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.br-desktop { display: none; }

@media (min-width: 768px) {
  .br-desktop { display: block; }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero__scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  writing-mode: vertical-rl;
}

.hero__scroll-arrow {
  font-size: 1rem;
  color: var(--tinta-suave);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   MARQUEE — barra fija superior
============================================================ */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--marquee-height);
  background: var(--rosa);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 200;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.9375rem);
  color: var(--tinta);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SOBRE FIORELLA
============================================================ */
.sobre {
  padding-block: var(--section-py);
  background: var(--crema);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .sobre__inner {
    grid-template-columns: 40fr 60fr;
    align-items: center;
  }
}

.sobre__eyebrow {
  margin-bottom: 1.5rem;
}

.sobre__title {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.sobre__parrafo {
  color: var(--tinta-suave);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}

.sobre__parrafo:last-of-type {
  margin-bottom: 0;
}

.sobre__stat {
  display: flex;
  flex-direction: column;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  gap: 0.25rem;
}

.sobre__stat-numero {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--tinta);
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}

.sobre__stat-numero::before {
  content: '+';
  font-size: 0.6em;
}

.sobre__stat-label {
  font-size: 0.875rem;
  color: var(--tinta-suave);
  letter-spacing: 0.05em;
}

/* Foto placeholder */
.sobre__foto-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.foto-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--rosa), var(--lila));
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.foto-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.15), transparent 60%);
}

.foto-placeholder__label {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.sobre__foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}

/* Reveal clip-path para foto */
.reveal-foto {
  clip-path: inset(0 100% 0 0);
}

/* ============================================================
   SERVICIOS
============================================================ */
.servicios {
  padding-block: var(--section-py);
  background: var(--blanco);
}

.servicios__title {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.servicios__lista {
  border-top: 1px solid var(--linea);
}

.servicio-item {
  border-bottom: 1px solid var(--linea);
  overflow: hidden;
}

.servicio-item__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 2rem;
  padding-block: clamp(1.25rem, 3vw, 2rem);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

@media (min-width: 1024px) {
  .servicio-item__inner {
    grid-template-columns: auto 1fr 1fr;
    grid-template-rows: auto;
    align-items: center;
  }
}

.servicio-item__num {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--tinta-suave);
  letter-spacing: 0.05em;
  transition: font-style 0.2s ease;
  align-self: center;
  min-width: 2.5rem;
}

.servicio-item__nombre {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  align-self: center;
}

.servicio-item__desc {
  display: none;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--tinta-suave);
  line-height: 1.55;
  max-width: 42ch;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 1024px) {
  .servicio-item__desc {
    display: block;
    justify-self: end;
    text-align: right;
  }
}

/* Mobile: desc debajo del nombre */
@media (max-width: 1023px) {
  .servicio-item__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .servicio-item__desc {
    display: block;
    grid-column: 2;
    max-width: none;
    text-align: left;
    padding-top: 0.5rem;
    font-size: 0.9rem;
  }
}

/* Hover estados */
.servicio-item:hover .servicio-item__inner {
  transform: translateX(12px);
}

.servicio-item:hover .servicio-item__num {
  font-style: italic;
}

.servicio-item:hover .servicio-item__desc {
  opacity: 1;
  transform: translateX(0);
}

/* En mobile siempre visible con transición */
@media (max-width: 1023px) {
  .servicio-item__desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.35s ease, padding-top 0.3s ease;
    padding-top: 0;
    transform: none;
  }
  .servicio-item:hover .servicio-item__desc,
  .servicio-item.active .servicio-item__desc {
    opacity: 1;
    max-height: 200px;
    padding-top: 0.5rem;
  }
}

/* ============================================================
   PROCESO
============================================================ */
.proceso {
  padding-block: var(--section-py);
  background: var(--verde-menta);
}

.proceso__title {
  margin-bottom: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
}

.proceso__title em {
  font-style: italic;
}

.proceso__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}

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

.proceso__paso {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  padding-top: 1.5rem;
}

.proceso__paso-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(26,26,26,0.25);
}

.proceso__paso-titulo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.1;
}

.proceso__paso-desc {
  color: var(--tinta-suave);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  max-width: 36ch;
}

/* ============================================================
   TESTIMONIOS
============================================================ */
.testimonios {
  padding-block: var(--section-py);
  background: var(--crema);
}

.testimonios__eyebrow {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonio {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: clamp(0rem, 5vw, 4rem);
}

.testimonio__comilla {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 0.7;
  color: var(--rosa);
  display: block;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonio__texto {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--tinta);
  max-width: 70ch;
  font-style: normal;
}

.testimonio__firma {
  font-size: 0.875rem;
  color: var(--tinta-suave);
  letter-spacing: 0.05em;
}

.testimonio__firma cite {
  font-style: normal;
}

.testimonio__firma cite::before {
  content: '— ';
}

/* Controles del slider */
.slider__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--tinta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--tinta);
  transition: background 0.25s ease, color 0.25s ease;
  cursor: none;
  flex-shrink: 0;
}

@media (pointer: coarse) {
  .slider__btn { cursor: pointer; }
}

.slider__btn:hover {
  background: var(--tinta);
  color: var(--crema);
}

.slider__dots {
  display: flex;
  gap: 0.75rem;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-marca);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: none;
}

@media (pointer: coarse) {
  .slider__dot { cursor: pointer; }
}

.slider__dot--active {
  background: var(--tinta);
  transform: scale(1.3);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding-block: var(--section-py);
  background: var(--blanco);
}

.faq__title {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
}

.faq__lista {
  max-width: 860px;
}

.faq__item {
  border-top: 1px solid var(--linea);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--linea);
}

.faq__pregunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--tinta);
  text-align: left;
  letter-spacing: -0.01em;
  cursor: none;
  transition: color 0.2s;
}

@media (pointer: coarse) {
  .faq__pregunta { cursor: pointer; }
}

.faq__pregunta:hover {
  color: var(--tinta-suave);
}

.faq__icono {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.faq__pregunta[aria-expanded="true"] .faq__icono {
  transform: rotate(45deg);
}

.faq__respuesta {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__respuesta.open {
  max-height: 400px;
}

.faq__respuesta-inner {
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--tinta-suave);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  max-width: 60ch;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  padding-block: var(--section-py);
  min-height: 80svh;
  display: flex;
  align-items: center;
  background: var(--crema);
  overflow: hidden;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-final__eyebrow {
  margin-bottom: 0;
}

.cta-final__titulo {
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  transform-origin: left center;
}

.cta-final__subtitulo {
  color: var(--tinta-suave);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding-block: clamp(3rem, 5vw, 4rem);
  background: var(--tinta);
  color: var(--crema);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: rgba(251, 248, 244, 0.5);
  letter-spacing: 0.05em;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__dato {
  font-size: 0.875rem;
  color: rgba(251, 248, 244, 0.6);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(251, 248, 244, 0.75);
  transition: color 0.2s ease;
  text-underline-offset: 3px;
}

.footer__link:hover {
  color: var(--crema);
  text-decoration: underline;
}

.footer__legal {
  justify-content: flex-end;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(251, 248, 244, 0.4);
}

.footer__link--legal {
  font-size: 0.8125rem;
  color: rgba(251, 248, 244, 0.4);
}

/* GSAP maneja todos los reveals inline — sin CSS inicial aquí */

/* ============================================================
   UTILIDADES
============================================================ */
.hidden { display: none !important; }
