/* ============================================================
   Foto Canvas — Landing B2B (profesionales creativos)
   Construida sobre el sistema de diseno (assets/tokens.css).
   Aqui se reconcilian la paleta del brief y Open Sans con los
   componentes, sombras calidas y radios del design system.
   ============================================================ */

:root {
  /* ---- Paleta exacta del brief ---- */
  --brand-green:       #24BF00;   /* verde primario / accion */
  --brand-green-2:     #71BF44;   /* verde secundario / gradiente */
  --brand-green-hover: #1FAB00;   /* hover CTA */
  --brand-black:       #1F100D;   /* "Negro" del brief: marron muy oscuro */
  --brand-black-hover: #33201A;
  --brand-grey:        #575454;   /* "Gris" del brief */
  --brand-grey-2:      #8A8585;

  /* Superficies: blanco galeria + marron oscuro cine (dos superficies) */
  --bg-dark: var(--brand-black);

  /* Foreground reconciliado con el brief */
  --fg-1: #1F100D;
  --fg-2: #575454;
  --fg-3: #8A8585;

  /* Sombras calidas (marron ambiente, segun README del design system) */
  --shadow-1: 0 1px 2px rgba(31,16,13,.08);
  --shadow-2: 0 10px 28px -8px rgba(31,16,13,.18);
  --shadow-3: 0 28px 64px -18px rgba(31,16,13,.34);
  --shadow-cta: 0 8px 20px -6px rgba(36,191,0,.45);

  /* Tipografia Open Sans (Google Fonts) con contraste de pesos 800 / 300 */
  --font-sans: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --w-light:    300;
  --w-regular:  400;
  --w-semibold: 600;
  --w-bold:     700;
  --w-extrabold:800;

  --header-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { background: var(--bg-canvas); color: var(--fg-1); }

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

/* Acceso por teclado: anillo de foco visible */
:focus-visible { outline: 3px solid var(--brand-green); outline-offset: 2px; border-radius: 4px; }

/* Saltar al contenido (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-black); color: #fff; padding: 12px 18px;
  border-radius: 0 0 12px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER / NAVBAR (fijo)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-1);
}
.site-header__inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-5);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; gap: var(--sp-6); align-items: center; }
.nav a {
  color: var(--fg-1); text-decoration: none; font-weight: var(--w-semibold);
  font-size: 15px; transition: color var(--dur-base) var(--ease-out);
}
.nav a:hover { color: var(--brand-green); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-shop-link { display: none; } /* solo aparece dentro del menu movil */

/* Hamburguesa (movil) */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; padding: 10px; border-radius: 10px;
}
.nav-toggle:hover { background: rgba(31,16,13,.06); }
.nav-toggle span { display: block; height: 2px; background: var(--fg-1); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; box-shadow: var(--shadow-2);
    padding: var(--sp-3) var(--gutter) var(--sp-5);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s var(--ease-out), opacity .22s var(--ease-out);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid rgba(31,16,13,.08); font-size: 17px; }
  .nav-toggle { display: block; }
  /* El boton de WhatsApp del header SIEMPRE visible en movil */
  .header-cta .header-wa { display: inline-flex; }
  /* En movil la tienda pasa al menu hamburguesa, no al header */
  .header-shop { display: none; }
  .nav-shop-link { display: block; }
}
@media (max-width: 460px) {
  .header-cta .header-wa .label-long { display: none; }
  .brand img { height: 32px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  /* halo verde sutil, una sola superficie oscura */
  content: ''; position: absolute; width: 620px; height: 620px; right: -180px; top: -160px;
  background: radial-gradient(circle, rgba(36,191,0,.16), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: var(--sp-8);
  align-items: center; padding-block: var(--sp-9);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 60px); color: #fff; line-height: 1.04;
  letter-spacing: -0.02em; margin-bottom: var(--sp-4);
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-green); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: var(--fg-on-dark-2); max-width: 540px; margin-bottom: var(--sp-6); font-size: var(--t-lead); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 10px; margin-top: var(--sp-5);
  color: var(--fg-on-dark-3); font-size: 14px;
}
.hero__trust svg { color: var(--brand-green); flex: none; }

/* Arte del hero: foto real en marco de galeria (imagen apaisada 16:9) */
.hero__art { position: relative; max-width: 600px; width: 100%; justify-self: end; }
.hero__photo {
  width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r-image); box-shadow: var(--shadow-3);
  background: #2A1814; display: block;
}
.hero__tag {
  position: absolute; bottom: -14px; left: -14px; background: var(--brand-green); color: #fff;
  border-radius: var(--r-pill); padding: 10px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; box-shadow: var(--shadow-3);
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); padding-block: var(--sp-8); }
  .hero__art { justify-self: center; max-width: 560px; }
}

/* ============================================================
   Encabezados de seccion
   ============================================================ */
.sec-head { max-width: 760px; margin: 0 auto var(--sp-7); text-align: center; }
.sec-head .t-lead { margin-top: var(--sp-3); }
.sec-head--left { text-align: left; margin-inline: 0; }

/* ============================================================
   PARA QUIEN (segmentos)
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.seg-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-2); padding: var(--sp-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.seg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(36,191,0,.12); color: var(--brand-green); margin-bottom: var(--sp-4);
}
.icon-badge svg { width: 26px; height: 26px; }
.seg-card h3 { font-size: var(--t-h4); margin-bottom: 8px; }
.seg-card p { font-size: 15px; color: var(--fg-2); margin: 0; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   COMO FUNCIONA (4 pasos)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.step { position: relative; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-green); color: #fff;
  display: grid; place-items: center; font-size: 19px; font-weight: 800; margin-bottom: var(--sp-4); box-shadow: var(--shadow-cta); }
.step h4 { font-size: var(--t-h4); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--fg-2); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   MARCA BLANCA (seccion destacada, gradiente verde sancionado)
   ============================================================ */
.whitelabel { background: var(--grad-green); color: #fff; }
.whitelabel__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-8); align-items: center; }
.whitelabel .eyebrow { color: rgba(255,255,255,.85); }
.whitelabel h2 { color: #fff; }
.whitelabel p { color: rgba(255,255,255,.92); font-weight: var(--w-regular); }
.whitelabel__card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-card); padding: var(--sp-6); backdrop-filter: blur(2px);
}
.whitelabel__card ul { list-style: none; margin: 0; padding: 0; }
.whitelabel__card li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; font-weight: 600; }
.whitelabel__card li + li { border-top: 1px solid rgba(255,255,255,.18); }
.whitelabel__card svg { flex: none; margin-top: 2px; }
@media (max-width: 860px) { .whitelabel__inner { grid-template-columns: 1fr; gap: var(--sp-6); } }

/* ============================================================
   MATERIALES
   ============================================================ */
.mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.mat-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-2); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.mat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.mat-card__swatch { aspect-ratio: 5/4; position: relative; overflow: hidden; }
.mat-card__swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mat-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.mat-card h4 { font-size: 17px; line-height: 1.25; margin-bottom: 6px; }
.mat-card .spec { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-green); margin-bottom: 8px; }
.mat-card p { font-size: 14px; color: var(--fg-2); margin: 0; }
.sw-lienzo-a { background: linear-gradient(135deg, #E8DCC8 0%, #A88566 100%); }
.sw-lienzo-p { background: linear-gradient(135deg, #DCC9A8 0%, #9C8158 100%); }
.sw-mdf      { background: linear-gradient(135deg, #C9B79A 0%, #6E5238 100%); }
.sw-acrilico { background: linear-gradient(135deg, #Bcd3da 0%, #5b7f8a 100%); }
.sw-roll     { background: linear-gradient(135deg, #efe6d3 0%, #b9a37e 100%); }
/* Las fotos reales cubren el swatch; los degradados sw-* quedan solo de respaldo
   por si una imagen no carga. */
@media (max-width: 1000px) { .mat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .mat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px)  { .mat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   POR QUE FOTO CANVAS
   ============================================================ */
.why { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-7); margin-top: var(--sp-6); }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .icon-badge { margin-bottom: 0; width: 44px; height: 44px; }
.why-item .icon-badge svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 17px; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--fg-2); margin: 0; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4);
  margin-top: var(--sp-8); background: var(--brand-black); border-radius: var(--r-card);
  padding: var(--sp-6); color: #fff; box-shadow: var(--shadow-2);
}
.stat { text-align: center; padding: var(--sp-3) var(--sp-2); }
.stat .v { display: block; font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; line-height: 1.05; }
.stat .v em { font-style: normal; color: var(--brand-green); }
.stat .l { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.6); margin-top: 8px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.12); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; gap: 0; padding: var(--sp-4); }
  .stat:nth-child(odd) { border-left: none; } .stat { border-top: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; } }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.tile {
  border-radius: var(--r-image); overflow: hidden; box-shadow: var(--shadow-2); position: relative;
  aspect-ratio: 1/1; transition: transform var(--dur-lean) var(--ease-out);
}
.tile:hover { transform: scale(1.02); }
.tile img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder on-brand mientras se cargan URLs reales del CDN */
.tile.is-placeholder::after {
  content: 'Sustituir por foto real'; position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; padding: 12px; color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; background-image: radial-gradient(rgba(31,16,13,.14) 1px, transparent 1px); background-size: 7px 7px;
}
.tile.g1 { background: linear-gradient(135deg, #E8C896 0%, #8B5A3C 100%); }
.tile.g2 { background: linear-gradient(135deg, #6B8E7A 0%, #2D4438 100%); }
.tile.g3 { background: linear-gradient(135deg, #D4A574 0%, #6B3A28 100%); }
.tile.g4 { background: linear-gradient(135deg, #C9A88E 0%, #5A3E2C 100%); }
.tile.g5 { background: linear-gradient(135deg, #B8C5D6 0%, #5A6878 100%); }
.tile.g6 { background: linear-gradient(135deg, #E8B89A 0%, #8B4A38 100%); }
.tile.g7 { background: linear-gradient(135deg, #cBA0d0 0%, #5d3a66 100%); }
.tile.g8 { background: linear-gradient(135deg, #9bbf8e 0%, #3d5a33 100%); }
.tile.g9 { background: linear-gradient(135deg, #e0c2a0 0%, #7a5230 100%); }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.tcard { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-2); padding: var(--sp-6); display: flex; flex-direction: column; }
.tcard__stars { color: var(--brand-green); letter-spacing: 3px; font-size: 17px; margin-bottom: 12px; }
.tcard__quote { font-size: 17px; font-weight: var(--w-regular); line-height: 1.55; color: var(--fg-1); margin: 0 0 var(--sp-5); flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-green-2); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; }
.tcard__name { font-weight: 700; font-size: 15px; }
.tcard__role { font-size: 13px; color: var(--fg-3); }
.placeholder-note { display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-grey); }
@media (max-width: 860px) { .tcards { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (acordeon)
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(31,16,13,.12); }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: var(--sp-5) 4px; font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: var(--fg-1);
}
.faq-q:hover { color: var(--brand-green); }
.faq-q .chev { flex: none; transition: transform .25s var(--ease-out); color: var(--brand-green); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease-out); }
.faq-a__inner { padding: 0 4px var(--sp-5); color: var(--fg-2); font-size: 16px; line-height: 1.6; }

/* ============================================================
   FORMULARIO DE CONTACTO
   ============================================================ */
.contact { background: var(--bg-alt); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }
.contact__aside .eyebrow { color: var(--brand-green); }
.contact__aside h2 { margin-bottom: var(--sp-3); }
.contact__points { list-style: none; padding: 0; margin: var(--sp-6) 0 0; }
.contact__points li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; color: var(--fg-1); font-weight: 600; }
.contact__points svg { color: var(--brand-green); flex: none; margin-top: 2px; }
.contact__alt { margin-top: var(--sp-6); font-size: 15px; color: var(--fg-2); }

.form-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-2); padding: var(--sp-7); }
.form-row { margin-bottom: var(--sp-4); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.req { color: var(--brand-green); }
.field-error { display: none; color: var(--color-danger); font-size: 13px; font-weight: 600; margin-top: 6px; }
.fc-input.invalid, .fc-select.invalid, .fc-textarea.invalid { border-color: var(--color-danger); box-shadow: 0 0 0 4px rgba(200,66,31,.12); }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { display: none; margin-top: var(--sp-4); padding: 14px 16px; border-radius: 12px; background: rgba(36,191,0,.12); color: #167C00; font-weight: 700; }
.form-status.is-visible { display: block; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; gap: var(--sp-6); } .form-card { padding: var(--sp-6); } }
@media (max-width: 460px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { background: var(--bg-dark); color: #fff; text-align: center; }
.cta-final h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-final__lead { color: var(--fg-on-dark-2); max-width: 560px; margin: var(--sp-3) auto var(--sp-6); font-size: var(--t-lead); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); color: var(--fg-on-dark-2); padding-block: var(--sp-8) var(--sp-5); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: var(--sp-7); }
.footer__brand img { height: 40px; margin-bottom: 16px; }
.footer__brand p { color: var(--fg-on-dark-3); font-size: 14px; max-width: 320px; }
.footer__col h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #fff; margin: 0 0 16px; }
.footer__col a, .footer__col p { color: var(--fg-on-dark-2); font-size: 14px; text-decoration: none; margin: 0 0 10px; display: block; line-height: 1.5; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); color: #fff; }
.footer__social a:hover { background: var(--brand-green); border-color: var(--brand-green); }
.map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; color: var(--brand-green) !important; font-weight: 700; }
.footer__bar { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--fg-on-dark-3); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOTON FLOTANTE DE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 28px -6px rgba(0,0,0,.4);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 14px 34px -6px rgba(0,0,0,.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 70%,100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 460px) { .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; } .wa-float svg { width: 28px; height: 28px; } }

/* ============================================================
   Aparicion suave al hacer scroll (fade-in)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .wa-float::after { display: none; }
}
