/* ==========================================================================
   Lumina Dental Studio — Hoja de estilos
   Paleta boutique: marfil / azul petróleo / verde salvia / dorado champagne
   ========================================================================== */

/* ------------------ 1. Tokens de diseño ------------------ */
:root {
  /* Colores */
  --bg:            #FBF8F3;   /* marfil / blanco cálido */
  --bg-alt:        #F4EFE6;   /* franja crema */
  --surface:       #FFFFFF;
  --petrol:        #12363A;   /* azul petróleo muy oscuro */
  --petrol-900:    #0C2528;
  --petrol-700:    #1B4A4E;
  --sage:          #8FA98C;   /* verde salvia */
  --sage-soft:     #E6EDE3;
  --sage-100:      #F1F5EF;
  --stone:         #6B726E;   /* gris piedra */
  --champagne:     #C4A462;   /* dorado champagne */
  --champagne-2:   #D8C08A;
  --ink:           #16302F;   /* texto títulos */
  --text:          #37433F;   /* texto cuerpo */
  --muted:         #6C7772;
  --line:          #E7E0D2;   /* bordes suaves */
  --line-2:        #EEE8DB;

  /* Tipografía */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Radios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 10px rgba(18, 54, 58, .06);
  --sh-md: 0 14px 40px rgba(18, 54, 58, .10);
  --sh-lg: 0 30px 70px rgba(18, 54, 58, .16);
  --sh-soft: 0 8px 30px rgba(18, 54, 58, .08);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --header-h: 76px;

  /* Movimiento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .2s;
  --t: .35s;
  --t-slow: .6s;
}

/* ------------------ 2. Reset & base ------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.12; }

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

::selection { background: var(--champagne); color: #fff; }

/* Imagen con fallback elegante si una URL remota fallara */
.img-broken {
  background: linear-gradient(135deg, var(--sage-soft), var(--bg-alt));
  position: relative;
}
.img-broken::after {
  content: "Lumina Dental Studio";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--sage);
  letter-spacing: .04em;
}

/* ------------------ 3. Utilidades ------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 2000;
  background: var(--petrol); color: #fff;
  padding: .7rem 1.2rem; border-radius: var(--r-sm);
  font-weight: 600; transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--stone);
  margin-bottom: 1.1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 22px; height: 1.5px; background: var(--champagne);
  display: inline-block; border-radius: 2px;
}

.section__head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  font-weight: 600; letter-spacing: -.01em; color: var(--ink);
}
.section__title--light { color: #fff; }
.section__sub { margin-top: 1rem; color: var(--muted); font-size: 1.06rem; }

/* Botones */
.btn {
  --btn-bg: var(--petrol);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  background: var(--btn-bg); color: #fff;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  position: relative; overflow: hidden; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .68rem 1.25rem; font-size: .875rem; }
.btn--block { width: 100%; }

.btn--primary { --btn-bg: var(--petrol); }
.btn--primary:hover { background: var(--petrol-900); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: #fff; border-color: var(--petrol); box-shadow: var(--sh-sm); }

.btn--wa {
  background: #1FA855; color: #fff;
}
.btn--wa:hover { background: #178a45; }
.btn--wa .ico { width: 20px; height: 20px; }

.ico { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--petrol-700); background: var(--sage-soft);
  padding: .3rem .7rem; border-radius: var(--r-pill); margin-bottom: .6rem;
}

.disclaimer {
  text-align: center; color: var(--muted); font-size: .86rem;
  margin-top: 2.2rem; font-style: italic;
}

/* Animaciones de aparición.
   El estado oculto solo se aplica cuando JS está disponible (clase .js),
   así el contenido nunca queda invisible si el JavaScript no se ejecuta. */
.reveal {
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(26px); }

/* ------------------ 4. Barra de confianza ------------------ */
.topbar {
  background: var(--petrol-900); color: #E7EDE9;
  font-size: .8rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__list { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: #C9D6D1; }
.topbar__item .ico { width: 15px; height: 15px; stroke: var(--champagne-2); }
.topbar__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: #fff; white-space: nowrap;
  transition: color var(--t) var(--ease);
}
.topbar__wa .ico { stroke: #4fd07f; }
.topbar__wa:hover { color: var(--champagne-2); }

/* ------------------ 5. Header ------------------ */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(251, 248, 243, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.header.is-scrolled {
  background: rgba(251, 248, 243, .95);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 34px; height: 34px; color: var(--champagne); flex: none; display: grid; place-items: center; }
.brand__mark svg { width: 100%; height: 100%; fill: currentColor; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.brand__accent { color: var(--petrol-700); font-weight: 500; }
.brand__tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }

.nav__list { display: flex; align-items: center; gap: .3rem; }
.nav__link {
  position: relative; padding: .55rem .7rem; font-size: .9rem; font-weight: 600;
  color: var(--text); border-radius: var(--r-sm);
  transition: color var(--t) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .32rem; height: 1.5px;
  background: var(--champagne); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: .8rem; }

.hamburger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); position: relative; }
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menú mobile */
.mobile-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 899;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.8rem;
  transform: translateY(-120%); transition: transform var(--t) var(--ease);
  box-shadow: var(--sh-md); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.mobile-menu__list a {
  display: block; padding: .95rem .4rem; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu__list a:hover { color: var(--champagne); }
.menu-overlay {
  position: fixed; inset: 0; z-index: 850; background: rgba(12, 37, 40, .35);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.menu-overlay.is-open { opacity: 1; }

/* ------------------ 6. Hero ------------------ */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--sage-soft), transparent 70%); top: -120px; right: -100px; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, #F0E6CF, transparent 70%); bottom: -140px; left: -120px; }

.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 600; letter-spacing: -.015em; color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__trust {
  display: grid; grid-template-columns: repeat(4, auto); gap: 1rem 1.8rem;
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero__trust li { font-size: .82rem; color: var(--muted); line-height: 1.35; }
.hero__trust strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; color: var(--petrol); font-weight: 600; }

/* Media hero */
.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/4.6; background: var(--sage-soft);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,37,40,.28));
}

.floating-card {
  position: absolute; background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); box-shadow: var(--sh-md);
  border-radius: var(--r-md); padding: .9rem 1.1rem; z-index: 2;
  animation: floaty 6s ease-in-out infinite;
}
.floating-card--review { top: 6%; left: -6%; max-width: 220px; }
.floating-card--review .stars { color: var(--champagne); font-size: .95rem; letter-spacing: .08em; }
.floating-card--review p { font-family: var(--font-serif); font-size: 1.12rem; color: var(--ink); margin: .3rem 0 .5rem; line-height: 1.3; }
.floating-card__author { font-size: .72rem; color: var(--muted); font-weight: 600; }

.floating-card--badge {
  bottom: 7%; right: -5%; display: flex; align-items: center; gap: .7rem; max-width: 250px;
  animation-delay: 1.5s;
}
.floating-card--badge .ico { width: 30px; height: 30px; stroke: var(--sage); }
.floating-card--badge strong { display: block; font-size: .85rem; color: var(--ink); }
.floating-card--badge span { font-size: .74rem; color: var(--muted); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero__scroll { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: var(--r-pill); display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--champagne); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: .2; } }

/* ------------------ 7. Stats ------------------ */
.stats { background: var(--petrol); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: clamp(2.5rem, 5vw, 3.6rem); }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 600; color: #fff; display: block; line-height: 1; }
.stat__label { margin-top: .6rem; font-size: .82rem; letter-spacing: .04em; color: #A9C0BB; display: block; }
.stat__num::after { content: ""; }

/* ------------------ 8. Tratamientos ------------------ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.t-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.t-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.t-card:hover::before { transform: scaleX(1); }
.t-card__icon {
  width: 58px; height: 58px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--sage-100); color: var(--petrol); margin-bottom: 1.3rem;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.t-card__icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.t-card:hover .t-card__icon { background: var(--petrol); color: var(--champagne-2); }
.t-card__title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: .55rem; }
.t-card__desc { font-size: .95rem; color: var(--muted); margin-bottom: .9rem; }
.t-card__benefit { font-size: .9rem; color: var(--petrol-700); font-weight: 600; padding-left: 1rem; position: relative; margin-bottom: 1.3rem; }
.t-card__benefit::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--champagne); }
.t-card__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .88rem; color: var(--ink); }
.t-card__link span { transition: transform var(--t) var(--ease); }
.t-card__link:hover { color: var(--champagne); }
.t-card__link:hover span { transform: translateX(4px); }

/* ------------------ 9. Diseño de sonrisa ------------------ */
.smile { background: var(--bg-alt); }
.smile__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.smile__media { position: relative; }
.smile__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 4/4.4; object-fit: cover; width: 100%; }
.smile__info-card {
  position: absolute; bottom: -22px; right: -14px; max-width: 300px;
  background: var(--surface); border-radius: var(--r-md); box-shadow: var(--sh-md);
  padding: 1.1rem 1.2rem; display: flex; gap: .85rem; align-items: flex-start; border: 1px solid var(--line-2);
}
.smile__info-icon { width: 42px; height: 42px; flex: none; border-radius: var(--r-sm); background: var(--sage-100); color: var(--petrol); display: grid; place-items: center; }
.smile__info-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.smile__info-card strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: .2rem; }
.smile__info-card span { font-size: .8rem; color: var(--muted); line-height: 1.4; }

.check-list { margin: 1.6rem 0 2rem; display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--text); font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312363A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ------------------ 10. Antes y después ------------------ */
.results { background: var(--bg); }
.ba {
  position: relative; max-width: 860px; margin: 0 auto; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg); user-select: none; touch-action: pan-y;
}
.ba__images { position: relative; aspect-ratio: 16/10; background: var(--sage-soft); }
.ba__images img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba__before-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ba__label {
  position: absolute; top: 14px; z-index: 3; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: rgba(12, 37, 40, .62); padding: .35rem .8rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  z-index: 4; cursor: ew-resize; display: grid; place-items: center;
}
.ba__handle-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: #fff; box-shadow: 0 0 0 1px rgba(12,37,40,.1); }
.ba__handle-grip {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--petrol);
  display: grid; place-items: center; box-shadow: var(--sh-md); z-index: 1;
}
.ba__handle-grip svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible .ba__handle-grip { outline: 3px solid var(--champagne); outline-offset: 3px; }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.case-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.case-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sage-soft); }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.case-card:hover .case-card__media img { transform: scale(1.06); }
.case-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.case-card__body p { font-size: .92rem; color: var(--muted); }

/* ------------------ 11. Tecnología ------------------ */
.tech { background: var(--bg-alt); }
.tech__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.tech-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; margin-top: 1.8rem; }
.tech-item { display: flex; gap: .8rem; align-items: flex-start; }
.tech-item__ico { width: 44px; height: 44px; flex: none; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line-2); color: var(--petrol); display: grid; place-items: center; box-shadow: var(--sh-sm); }
.tech-item__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tech-item strong { display: block; font-size: .95rem; color: var(--ink); }
.tech-item span { font-size: .82rem; color: var(--muted); line-height: 1.4; }

.tech__media { position: relative; }
.tech__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.tech__chip {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.94); border: 1px solid var(--line-2); box-shadow: var(--sh-sm);
  padding: .6rem 1rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 600; color: var(--ink);
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--sage); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(3); opacity: 0; } }

/* ------------------ 12. Proceso ------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.step__num {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--petrol);
  background: var(--surface); border: 1.5px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.step:hover .step__num { background: var(--petrol); color: var(--champagne-2); border-color: var(--petrol); transform: translateY(-4px); }
.step__title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--muted); }

/* ------------------ 13. Equipo ------------------ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.member { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.member__photo { aspect-ratio: 4/4.2; overflow: hidden; background: var(--sage-soft); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.member:hover .member__photo img { transform: scale(1.05); }
.member__body { padding: 1.5rem 1.6rem 1.8rem; }
.member__name { font-family: var(--font-serif); font-size: 1.5rem; }
.member__role { color: var(--champagne); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin: .3rem 0 .8rem; }
.member__bio { font-size: .92rem; color: var(--muted); margin-bottom: .8rem; }
.member__reg { font-size: .8rem; color: var(--stone); font-weight: 600; margin-bottom: 1.1rem; }
.member__btn { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .86rem; color: var(--ink); }
.member__btn span { transition: transform var(--t) var(--ease); }
.member__btn:hover { color: var(--champagne); }
.member__btn:hover span { transform: translateX(4px); }

/* ------------------ 14. Testimonios ------------------ */
.testimonials { background: var(--bg-alt); }
.verified { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--petrol-700); font-weight: 600; }
.verified svg { width: 22px; height: 22px; fill: none; stroke: var(--sage); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

.carousel { max-width: 820px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--r-lg); }
.carousel__track { display: flex; transition: transform var(--t-slow) var(--ease); }
.carousel__slide { min-width: 100%; padding: .3rem; }
.review {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--sh-sm); text-align: center;
}
.review .stars { color: var(--champagne); font-size: 1.15rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review blockquote { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.4; color: var(--ink); font-weight: 500; }
.review__author { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.6rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--petrol); color: var(--champagne-2); font-weight: 700; font-size: .95rem; letter-spacing: .04em; }
.review__author span:last-child { text-align: left; display: flex; flex-direction: column; line-height: 1.3; }
.review__author strong { color: var(--ink); }
.review__author em { font-style: normal; font-size: .82rem; color: var(--muted); }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.carousel__btn { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; box-shadow: var(--sh-sm); transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease); }
.carousel__btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.carousel__btn:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }
.carousel__dots { display: flex; gap: .5rem; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: background var(--t) var(--ease), transform var(--t) var(--ease); }
.carousel__dot.is-active { background: var(--champagne); transform: scale(1.25); }

/* ------------------ 15. Financiación ------------------ */
.financing { background: var(--petrol); position: relative; overflow: hidden; }
.financing::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(196,164,98,.18), transparent 70%); top: -160px; right: -120px; }
.financing__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
.financing__content .eyebrow { color: #A9C0BB; }
.financing__lead { color: #C9D6D1; font-size: 1.06rem; margin: 1rem 0 1.4rem; }
.financing__list { display: grid; gap: .7rem; margin-bottom: 2rem; }
.financing__list li { position: relative; padding-left: 1.9rem; color: #E7EDE9; }
.financing__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(196,164,98,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8C08A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E") center/11px no-repeat;
}
.financing__card { background: var(--surface); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-lg); text-align: center; }
.financing__card-eyebrow { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.financing__card-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--ink); margin: .3rem 0 .6rem; }
.financing__card-price { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; color: var(--champagne); line-height: 1; }
.financing__card-note { font-size: .88rem; color: var(--muted); margin: .8rem 0 1.6rem; }

/* ------------------ 16. FAQ ------------------ */
.faq__inner { max-width: 820px; margin-inline: auto; }
.accordion { display: grid; gap: .8rem; }
.acc__item { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.acc__item.is-open { box-shadow: var(--sh-sm); border-color: var(--line); }
.acc__heading { margin: 0; }
.acc__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left; font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; color: var(--ink);
  transition: color var(--t) var(--ease);
}
.acc__trigger:hover { color: var(--petrol-700); }
.acc__icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--champagne); border-radius: 2px; transition: transform var(--t) var(--ease); }
.acc__icon::before { top: 9px; left: 0; right: 0; height: 2px; }
.acc__icon::after { left: 9px; top: 0; bottom: 0; width: 2px; }
.acc__item.is-open .acc__icon::after { transform: scaleY(0); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.acc__panel p { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: .96rem; }

/* ------------------ 17. Contacto ------------------ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-bottom: 3rem; }
.contact__intro .btn--wa { margin: 1.5rem 0 2rem; }
.contact__data { display: grid; gap: 1.2rem; }
.contact__data li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__ico { width: 44px; height: 44px; flex: none; border-radius: var(--r-sm); background: var(--sage-100); color: var(--petrol); display: grid; place-items: center; }
.contact__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact__data strong { display: block; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); margin-bottom: .1rem; }
.contact__data a, .contact__data span { color: var(--ink); font-weight: 600; }
.contact__data a:hover { color: var(--champagne); }

/* Formulario */
.contact__form-wrap { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--sh-soft); }
.form__title { font-family: var(--font-serif); font-size: 1.7rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field__optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg); color: var(--ink); transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--petrol); background: #fff; box-shadow: 0 0 0 3px rgba(18,54,58,.08);
}
.field textarea { resize: vertical; min-height: 70px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2337433F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px; padding-right: 2.4rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C0563F; background: #FDF3F0; }
.field__error { display: block; font-size: .78rem; color: #C0563F; margin-top: .35rem; min-height: 0; }
.field.has-error .field__error { min-height: 1rem; }

.field--check { margin-top: .4rem; }
.checkbox { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box { width: 22px; height: 22px; flex: none; border: 1.5px solid var(--line); border-radius: 6px; background: var(--bg); display: grid; place-items: center; transition: background var(--t) var(--ease), border-color var(--t) var(--ease); margin-top: 1px; }
.checkbox__box::after { content: ""; width: 11px; height: 11px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E") center/contain no-repeat; opacity: 0; transform: scale(.6); transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.checkbox input:checked + .checkbox__box { background: var(--petrol); border-color: var(--petrol); }
.checkbox input:checked + .checkbox__box::after { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .checkbox__box { outline: 3px solid var(--champagne); outline-offset: 2px; }
.checkbox a { color: var(--petrol-700); font-weight: 600; text-decoration: underline; }

.btn__spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; display: none; animation: spin .7s linear infinite; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: .7; }
.btn.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__success {
  display: flex; align-items: center; gap: .6rem; margin-top: 1.1rem;
  background: var(--sage-100); border: 1px solid var(--sage-soft); color: var(--petrol-700);
  padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .9rem; font-weight: 600;
  animation: fadeUp var(--t) var(--ease);
}
.form__success svg { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-soft); border: 1px solid var(--line-2); line-height: 0; }
.map iframe { display: block; filter: grayscale(.2) contrast(1.02); }

/* ------------------ 18. Footer ------------------ */
.footer { background: var(--petrol-900); color: #C7D3CF; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer .brand__name, .brand--footer .brand__accent { color: #fff; }
.brand--footer .brand__accent { color: #A9C0BB; }
.brand--footer .brand__tag { color: #7E938E; }
.footer__desc { margin: 1.2rem 0 1.4rem; font-size: .9rem; color: #9DB0AB; max-width: 32ch; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #C7D3CF; transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease); }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.footer__social a:hover { background: var(--champagne); color: var(--petrol-900); border-color: var(--champagne); }
.footer__col h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a, .footer__contact li { font-size: .9rem; color: #9DB0AB; transition: color var(--t) var(--ease); }
.footer__col a:hover { color: var(--champagne-2); }
.footer__contact { display: grid; gap: .6rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { font-size: .82rem; color: #7E938E; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { font-size: .82rem; color: #9DB0AB; }
.footer__legal a:hover { color: var(--champagne-2); }

/* ------------------ 19. Flotantes ------------------ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%; background: #1FA855; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,168,85,.4);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(31,168,85,.5); }
.wa-float__tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--petrol-900); color: #fff; font-size: .8rem; font-weight: 600; white-space: nowrap;
  padding: .5rem .85rem; border-radius: var(--r-sm); opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); box-shadow: var(--sh-md);
}
.wa-float__tooltip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--petrol-900); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.wa-float:hover .wa-float__tooltip, .wa-float:focus-visible .wa-float__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 10px 30px rgba(31,168,85,.4), 0 0 0 0 rgba(31,168,85,.4); } 50% { box-shadow: 0 10px 30px rgba(31,168,85,.4), 0 0 0 12px rgba(31,168,85,0); } }

.to-top {
  position: fixed; right: 20px; bottom: 86px; z-index: 799;
  width: 46px; height: 46px; border-radius: 50%; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--sh-md); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t) var(--ease), background var(--t) var(--ease);
}
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--petrol); color: #fff; }

/* ------------------ 20. Modal ------------------ */
.modal { position: fixed; inset: 0; z-index: 1500; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(12,37,40,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity var(--t) var(--ease); }
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative; max-width: 560px; width: calc(100% - 2rem); margin: 6vh auto 2rem;
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); max-height: 88vh; overflow-y: auto;
  transform: translateY(24px) scale(.98); opacity: 0;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); color: var(--ink); display: grid; place-items: center; transition: background var(--t) var(--ease), transform var(--t) var(--ease); }
.modal__close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.modal__close:hover { background: var(--petrol); color: #fff; transform: rotate(90deg); }
.modal__title { font-family: var(--font-serif); font-size: 1.9rem; margin-bottom: .4rem; }
.modal__sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
body.no-scroll { overflow: hidden; }

/* ------------------ 21. Responsive ------------------ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__trust { grid-template-columns: repeat(4, 1fr); }
  .tech__grid, .smile__grid { grid-template-columns: 1fr; }
  .smile__media, .tech__media { max-width: 520px; margin-inline: auto; }
  .financing__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cards-grid, .team-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: block; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; }
  .steps::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .topbar__item--hide-sm { display: none; }
  .topbar__wa span { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .tech-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .floating-card--review { left: 0; }
  .floating-card--badge { right: 0; }
}

@media (max-width: 560px) {
  .cards-grid, .team-grid, .cases-grid { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .smile__info-card { position: static; margin-top: 1.2rem; max-width: none; }
  .floating-card { position: static; display: none; }
  .wa-float__tooltip { display: none; }
}

/* ------------------ 22. Reduced motion ------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .floating-card, .wa-float, .hero__scroll span, .pulse-dot::after { animation: none !important; }
}
