/* ============================================================
   Laive Soluções e Tecnologia — styles.css
   Tokens e componentes baseados em specs/design.md
   ============================================================ */

:root {
  /* Marca */
  --brand-500: #1E7BFF;
  --brand-600: #1466E6;
  --brand-400: #4C97FF;
  --navy-700:  #0F2A5A;

  /* Neutros / fundo */
  --bg-900:    #060A14;
  --bg-800:    #0A101E;
  --surface:   #0D1424;
  --surface-2: #111A2E;
  --border:    #1B2740;
  --border-hi: rgba(76,151,255,.35);

  /* Texto */
  --text:      #EAF1FF;
  --text-muted:#9AAECB;
  --text-dim:  #6B7E9C;

  /* Contato (verde reservado) */
  --whatsapp:     #25D366;
  --cta-green:    #22C55E;
  --cta-green-600:#16A34A;

  /* Raios */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  /* Tipografia */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;
}

/* ---------- Reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand-500); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Ícone WhatsApp (svg) ---------- */
.ico { width: 20px; height: 20px; flex: none; }

/* ---------- Motivo dos losangos (marca) ---------- */
.diamonds {
  --d: 16px;
  display: inline-block; width: calc(var(--d) * 1.9); height: calc(var(--d) * .8);
  margin-right: 10px; vertical-align: middle; flex: none;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 13'%3E%3Crect x='1.5' y='5.5' width='6' height='6' rx='1' transform='rotate(45 4.5 8.5)' fill='%231E7BFF'/%3E%3Crect x='11.5' y='1.5' width='6' height='6' rx='1' transform='rotate(45 14.5 4.5)' fill='%234C97FF'/%3E%3Crect x='21.5' y='5.5' width='6' height='6' rx='1' transform='rotate(45 24.5 8.5)' fill='%231E7BFF'/%3E%3C/svg%3E");
  background-size: contain; background-position: center;
}
.diamonds--sm { --d: 12px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .975rem;
  padding: 13px 22px; border-radius: var(--radius-md); cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--whatsapp {
  background: var(--cta-green); color: #04140A;
  box-shadow: 0 8px 24px -10px rgba(34,197,94,.7);
}
.btn--whatsapp:hover { background: var(--cta-green-600); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: rgba(30,123,255,.04); color: var(--text); border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--brand-500); background: rgba(30,123,255,.10); transform: translateY(-2px); }
.btn--ghost span { transition: transform .18s ease; }
.btn--ghost:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,10,20,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(6,10,20,.9); }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand__logo { height: 50px; width: auto; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 28px; }
.nav__list a { color: var(--text-muted); font-size: .95rem; font-weight: 500; position: relative; padding: 6px 0; transition: color .2s; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brand-500); border-radius: 2px; transition: width .25s;
}
.nav__list a:hover, .nav__list a.is-active { color: var(--text); }
.nav__list a:hover::after, .nav__list a.is-active::after { width: 100%; }
.header__cta { padding: 10px 18px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; margin-left: auto;
}
.nav-toggle__bar { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Eyebrow / seções ---------- */
.eyebrow {
  display: inline-flex; align-items: center;
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600;
  color: var(--brand-400); margin-bottom: 18px;
}
.section { padding-block: clamp(64px, 10vw, 128px); position: relative; }
.section--alt { background: var(--bg-800); }
.section__head { max-width: 680px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section__head .eyebrow { justify-content: center; }
.section__head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.section__sub { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(72px, 12vw, 130px); padding-bottom: clamp(64px, 10vw, 120px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(30,123,255,.28), transparent 60%),
    radial-gradient(50% 50% at 15% 85%, rgba(15,42,90,.55), transparent 65%);
}
.grid-overlay {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(76,151,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,151,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask: radial-gradient(80% 80% at 50% 30%, #000, transparent 85%);
  mask: radial-gradient(80% 80% at 50% 30%, #000, transparent 85%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-900) 100%);
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 68% 42%; opacity: .5;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-900) 6%, rgba(6,10,20,.86) 34%, rgba(6,10,20,.45) 68%, rgba(6,10,20,.7) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
.hero__title .accent { color: var(--brand-500); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 560px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,20,36,.7); border: 1px solid var(--border); backdrop-filter: blur(6px);
  padding: 9px 15px; border-radius: 999px; font-size: .875rem; color: var(--text-muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Parede de telas decorativa (atmosfera CCO, sem foto real) */
.screen-wall {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, rgba(20,60,140,.35), rgba(6,10,20,0) 55%),
    repeating-linear-gradient(90deg, rgba(76,151,255,.10) 0 2px, transparent 2px 46px),
    repeating-linear-gradient(0deg, rgba(76,151,255,.08) 0 2px, transparent 2px 40px);
  background-color: #070C18;
}
.screen-wall::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(30% 40% at 72% 30%, rgba(30,123,255,.35), transparent 70%),
    radial-gradient(22% 30% at 30% 66%, rgba(76,151,255,.28), transparent 70%);
  mix-blend-mode: screen;
}
.hero .screen-wall { left: 42%; opacity: .9; -webkit-mask: linear-gradient(90deg, transparent, #000 45%); mask: linear-gradient(90deg, transparent, #000 45%); }
.screen-wall--soft { opacity: .8; }

/* ---------- Sobre ---------- */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.about__text h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin-bottom: 20px; }
.about__text p + p { margin-top: 16px; color: var(--text-muted); }
.about__text p:first-of-type { color: var(--text-muted); }

.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4 / 3; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.media-frame--tall { aspect-ratio: 4 / 3.4; }
.media-frame__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.media-frame__badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,10,20,.72); border: 1px solid var(--border-hi); backdrop-filter: blur(6px);
  padding: 7px 13px; border-radius: 999px; font-size: .78rem; color: var(--text); letter-spacing: .02em;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d4f; box-shadow: 0 0 0 0 rgba(255,77,79,.6); animation: pulse 1.8s infinite; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: clamp(40px, 6vw, 64px);
}
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: left;
}
.stat__value { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--brand-500); }
.stat__label { display: block; color: var(--text-muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Cards de solução ---------- */
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); background: var(--surface-2); border-color: var(--border-hi); box-shadow: 0 24px 48px -28px rgba(30,123,255,.5); }
.card__ico {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: var(--radius-md); background: rgba(30,123,255,.10); color: var(--brand-400);
  margin-bottom: 18px; border: 1px solid rgba(76,151,255,.18);
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .92rem; }

.card--wide { grid-column: 1 / -1; margin-top: 20px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.card--wide:hover { transform: none; }
.card--wide__intro { display: flex; gap: 18px; align-items: flex-start; }
.card--wide h3 { font-size: 1.3rem; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text-muted); font-size: .95rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,.12);
  /* check em azul da marca */
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: 6px; width: 7px; height: 4px;
  border-left: 2px solid var(--brand-400); border-bottom: 2px solid var(--brand-400);
  transform: rotate(-45deg);
}
.checklist--stack { grid-template-columns: 1fr; margin: 24px 0; }

/* ---------- Clientes ---------- */
.clients { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.client {
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; margin: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 18px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.client:hover { transform: translateY(-3px); border-color: var(--border-hi); box-shadow: 0 20px 40px -28px rgba(30,123,255,.5); }
.client__plate {
  width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-md);
  background: #fff; display: flex; align-items: center; justify-content: center;
  padding: 16px; border: 1px solid var(--border);
}
.client__plate--dark { background: #0B0E16; }
.client__plate img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.client__name { color: var(--text-muted); font-size: .9rem; line-height: 1.35; font-weight: 500; }

/* ---------- CCO ---------- */
.cco { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.cco__text h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin-bottom: 18px; }
.cco__text > p { color: var(--text-muted); }

/* ---------- Estrutura ---------- */
.structure { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 20px; align-items: stretch; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 10px;
}
.info-card__ico { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: var(--radius-md); background: rgba(30,123,255,.10); color: var(--brand-400); border: 1px solid rgba(76,151,255,.18); margin-bottom: 6px; }
.info-card__ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.15rem; }
.info-card__addr { color: var(--text-muted); font-size: .95rem; }
.link-arrow { color: var(--brand-400); font-weight: 600; font-size: .92rem; margin-top: auto; display: inline-flex; gap: 6px; }
.link-arrow span { transition: transform .18s; }
.link-arrow:hover span { transform: translateX(4px); }

.map-frame {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  min-height: 240px; height: 100%; transition: border-color .22s ease, box-shadow .22s ease;
}
.map-frame__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: invert(1) hue-rotate(180deg) brightness(.92) contrast(.92) saturate(.75);
  transition: transform .5s ease;
}
.map-frame__tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(30,123,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(6,10,20,.10) 0%, rgba(6,10,20,.55) 100%);
}
.map-frame:hover { border-color: var(--border-hi); box-shadow: 0 20px 40px -28px rgba(30,123,255,.5); }
.map-frame:hover .map-frame__img { transform: scale(1.04); }
.map-frame__badge { background: rgba(6,10,20,.82); }
.media-frame__badge svg { width: 15px; height: 15px; color: var(--brand-400); }
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center;
  border-radius: var(--radius-lg); border: 1px dashed var(--border); color: var(--text-dim);
  background: var(--surface); min-height: 240px; padding: 24px;
}
.photo-placeholder svg { width: 40px; height: 40px; color: var(--text-dim); }
.photo-placeholder small { color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band { padding-block: clamp(48px, 7vw, 80px); }
.cta-band__inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background:
    radial-gradient(60% 120% at 90% 0%, rgba(30,123,255,.35), transparent 60%),
    linear-gradient(120deg, var(--navy-700), #0B1730);
  border: 1px solid var(--border-hi); border-radius: 22px; padding: clamp(28px, 5vw, 48px);
}
.cta-band__ico { display: inline-flex; width: 60px; height: 60px; align-items: center; justify-content: center; border-radius: var(--radius-md); background: rgba(255,255,255,.08); color: #fff; flex: none; }
.cta-band__ico svg { width: 30px; height: 30px; }
.cta-band__text { flex: 1 1 320px; }
.cta-band__text h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band__text p { color: rgba(234,241,255,.82); margin-top: 8px; }
.cta-band__action { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cta-band__note { color: rgba(234,241,255,.7); font-size: .82rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-800); padding-top: clamp(48px, 7vw, 72px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px 32px; }
.footer__brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--text-muted); font-size: .92rem; }
.footer__col h4 { font-family: var(--font-head); font-size: .95rem; margin-bottom: 16px; color: var(--text); }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a, .footer__contact span { color: var(--text-muted); font-size: .92rem; transition: color .18s; }
.footer__col a:hover { color: var(--brand-400); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-400); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--radius-md); border: 1px solid var(--border); color: var(--text-muted); transition: color .18s, border-color .18s, transform .18s; }
.footer__social a:hover { color: var(--brand-400); border-color: var(--border-hi); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid var(--border); margin-top: clamp(40px, 6vw, 56px); padding-block: 24px; }
.footer__bottom p { color: var(--text-dim); font-size: .85rem; text-align: center; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cta-green); color: #04140A; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(34,197,94,.7); transition: transform .2s, background .2s;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.07); background: var(--cta-green-600); color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,77,79,.55); }
  70% { box-shadow: 0 0 0 8px rgba(255,77,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,79,0); }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .card--wide { grid-template-columns: 1fr; }
  .nav__list { gap: 20px; }
  .header__cta { display: none; }

  /* Menu mobile */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
    background: rgba(6,10,20,.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav.is-open { max-height: 420px; }
  .nav__list { flex-direction: column; gap: 0; padding: 8px var(--gutter) 20px; }
  .nav__list li { border-bottom: 1px solid var(--border); }
  .nav__list a { display: block; padding: 15px 0; font-size: 1rem; }
  .nav__list a::after { display: none; }
}

@media (max-width: 840px) {
  .about, .cco { grid-template-columns: 1fr; }
  .cco__media { order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .structure { grid-template-columns: 1fr 1fr; }
  .structure .info-card { grid-column: 1 / -1; }
  .checklist { grid-template-columns: 1fr; }
  .media-frame--tall { aspect-ratio: 16 / 10; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .structure { grid-template-columns: 1fr; }
  .hero .screen-wall { left: 0; opacity: .35; }
  .hero__actions .btn { flex: 1 1 100%; }
  .stat { padding: 22px 18px; }
}

/* ---------- Movimento reduzido ---------- */
@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; transform: none; }
}
