/* ====================================================================
   Ativa Medical — estilos
   Paleta da marca: #CAA23E (dourado) / #DCDBB3 (bege) — design-guide.md
   ==================================================================== */

:root {
  --gold: #CAA23E;
  --gold-deep: #b08a2c;
  --gold-soft: #e3c97e;
  --beige: #DCDBB3;
  --beige-soft: #F4F2E6;
  --ink: #2E2A22;
  --ink-soft: #5c5546;
  --white: #ffffff;
  --line: #ece8da;
  --wa: #25D366;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(46, 42, 34, .06);
  --shadow-md: 0 14px 40px rgba(46, 42, 34, .10);
  --shadow-gold: 0 10px 26px rgba(202, 162, 62, .28);

  --container: 1160px;
  --nav-h: 76px;

  font-synthesis: none;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--gold-deep); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1.5px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

.btn-primary { background: var(--gold); color: #2a2110; box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ====================================================================
   NAVBAR — flutuante, translúcida, cantos arredondados
   ==================================================================== */
.navbar {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center;
  padding: 0 16px;
  transition: top .3s ease;
}
.navbar-inner {
  width: 100%; max-width: var(--container);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--nav-h);
  padding: 0 14px 0 22px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(46, 42, 34, .08);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 34px rgba(46, 42, 34, .14);
  border-color: rgba(236, 232, 218, .9);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; }
.brand-name { font-weight: 600; font-size: 1.15rem; letter-spacing: -.02em; color: var(--ink); }
.brand-name strong { color: var(--gold-deep); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a:not(.btn) {
  padding: 9px 13px; border-radius: 10px; font-weight: 500; font-size: .94rem;
  color: var(--ink-soft); transition: color .2s, background .2s;
}
.nav-links > a:not(.btn):hover { color: var(--gold-deep); background: rgba(202, 162, 62, .1); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px; border-radius: 10px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 80px;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(202, 162, 62, .16), transparent 60%),
    linear-gradient(180deg, var(--beige-soft) 0%, #fff 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold-deep);
  background: rgba(202, 162, 62, .14); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); font-weight: 800; margin-bottom: 18px; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-sm); max-width: 460px;
  font-size: .94rem; color: var(--ink-soft);
}
.hero-badge svg { color: var(--gold-deep); flex-shrink: 0; }
.hero-badge strong { color: var(--ink); }

.hero-media { display: flex; justify-content: center; }

/* ---------- placeholders de imagem ---------- */
.media-placeholder {
  width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; color: var(--gold-deep); font-weight: 600;
  background: repeating-linear-gradient(135deg, var(--beige-soft), var(--beige-soft) 14px, #efecdc 14px, #efecdc 28px);
  border: 2px dashed var(--gold-soft); border-radius: var(--radius-lg);
}
.media-placeholder span { font-size: .95rem; line-height: 1.4; }
.media-placeholder small { font-weight: 500; color: var(--ink-soft); font-size: .78rem; }
.placeholder-logo { width: 84px; height: 84px; object-fit: contain; opacity: .85; }
.media-tall { aspect-ratio: 4 / 5; max-width: 420px; box-shadow: var(--shadow-md); }
.media-portrait { aspect-ratio: 3 / 4; }

/* imagens reais que substituem os placeholders — mesmos cantos arredondados */
.media-img {
  width: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}

/* ====================================================================
   STRIP (indicadores)
   ==================================================================== */
.strip {
  color: #fff;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(202, 162, 62, .35), transparent 65%),
    linear-gradient(135deg, #3a3327 0%, #2E2A22 100%);
}
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 34px 24px;
}
.strip-item { display: flex; flex-direction: column; gap: 4px; }
.strip-item strong { color: var(--gold-soft); font-size: 1.35rem; font-weight: 700; }
.strip-item span { font-size: .92rem; color: rgba(255, 255, 255, .78); }

/* ====================================================================
   SEÇÕES genéricas
   ==================================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--beige-soft); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head-left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- equipe ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.team-card .media-portrait { width: 130px; }
.team-info { min-width: 0; overflow-wrap: break-word; }
.team-info h3 { font-size: 1.25rem; }
.team-role { color: var(--gold-deep); font-weight: 600; font-size: .9rem; margin: 4px 0 10px; }
/* Identificação obrigatória (Res. CFM 2.336/2023, art. 4º): mesma fonte, tamanho e cor entre os elementos */
.med-id { color: var(--ink); font-weight: 500; font-size: .9rem; line-height: 1.55; margin: 4px 0 10px; }
.team-info p:last-child { color: var(--ink-soft); font-size: .95rem; }

/* ---------- cards de serviços ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 18px;
  background: rgba(202, 162, 62, .14); color: var(--gold-deep);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; }

.card-feature { background: linear-gradient(165deg, #fff 0%, var(--beige-soft) 100%); border-color: var(--gold-soft); }
.card-badge {
  position: absolute; top: 18px; right: 18px; font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: #2a2110;
  background: var(--gold); padding: 4px 10px; border-radius: 999px;
}

/* ====================================================================
   DIFERENCIAL (feature)
   ==================================================================== */
.feature-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.feature-media .media-tall { max-width: 100%; }
.feature-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.feature-copy > p { color: var(--ink-soft); margin-bottom: 22px; }
.feature-list { display: grid; gap: 14px; margin-bottom: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.feature-list svg { color: var(--gold-deep); margin-top: 3px; flex-shrink: 0; }
.feature-note {
  font-size: .95rem; color: var(--ink-soft); border-left: 3px solid var(--gold-soft);
  padding-left: 16px; margin-bottom: 26px;
}

/* ====================================================================
   PAINS
   ==================================================================== */
.pains {
  text-align: center; color: #fff;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(202, 162, 62, .35), transparent 65%),
    linear-gradient(135deg, #3a3327 0%, #2E2A22 100%);
  padding: 78px 0;
}
.pains h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 10px; }
.pains-sub { color: rgba(255, 255, 255, .8); margin-bottom: 34px; }
.pains-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 38px;
}
.pains-list li {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  padding: 10px 20px; border-radius: 999px; font-weight: 500; font-size: .95rem;
  backdrop-filter: blur(4px); cursor: default;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.pains-list li:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold-soft);
  color: #2a2110;
}

/* ---------- carrossel (laser em uso) ---------- */
.carousel {
  position: relative; width: 100%; max-width: 720px; margin: 0 auto 38px;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, .14);
}
.carousel-track { width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
.carousel-slide.is-active { opacity: 1; pointer-events: auto; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; cursor: pointer;
  background: rgba(0, 0, 0, .38); border: 1px solid rgba(255, 255, 255, .35);
  color: #fff; transition: background .2s, border-color .2s;
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold-soft); color: #2a2110; }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; justify-content: center; gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .45); transition: background .2s, width .2s;
}
.carousel-dot.is-active { background: var(--gold); width: 22px; }

@media (max-width: 768px) {
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.faq-item[open] { border-color: var(--gold-soft); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--gold-deep);
  line-height: 1; transition: transform .25s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 20px; color: var(--ink-soft); font-size: .97rem; }

/* ====================================================================
   CONTATO
   ==================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contact-list { display: grid; gap: 22px; margin: 30px 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(202, 162, 62, .14); color: var(--gold-deep);
}
.contact-list strong { display: block; margin-bottom: 3px; }
.contact-list div { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.contact-list a:hover { color: var(--gold-deep); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; display: block; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer { background: var(--ink); color: rgba(255, 255, 255, .8); padding-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name strong { color: var(--gold-soft); }
.footer-logo { width: 42px; height: 42px; object-fit: contain; }
.footer-brand p { font-size: .92rem; max-width: 340px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; color: #fff;
  background: rgba(255, 255, 255, .08); transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: #2a2110; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; margin-bottom: 9px; color: rgba(255, 255, 255, .75); }
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: .84rem; color: rgba(255, 255, 255, .55); }
.footer-bottom .footer-id { color: rgba(255, 255, 255, .82); }

/* ====================================================================
   WHATSAPP FLUTUANTE
   ==================================================================== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ====================================================================
   RESPONSIVO
   ==================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .media-tall { max-width: 360px; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-media { max-width: 420px; margin: 0 auto; }
  .faq-wrap { grid-template-columns: 1fr; gap: 30px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > a:not(.btn) { padding: 12px 14px; }
  .nav-cta { margin: 6px 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  .section { padding: 64px 0; }

  /* (1) foto da equipe vai para o fim da hero, antes da faixa marrom */
  .hero-media { order: 0; }

  /* (2) faixa marrom: mais respiro vertical e texto mais harmônico
     (.strip .strip-grid vence a regra .container { padding: 0 18px } do breakpoint 480) */
  .strip .strip-grid { grid-template-columns: 1fr; gap: 26px; padding: 44px 24px; }
  .strip-item { align-items: center; text-align: center; }
  .strip-item:not(:last-child) { padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .strip-item strong { font-size: 1.15rem; }
  .strip-item span { font-size: .88rem; max-width: 300px; }

  .team-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }

  /* (3) card da laserterapia (diferencial) aparece primeiro */
  .cards-grid .card-feature { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; }
  .section-head { margin-bottom: 38px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .navbar { top: 8px; padding: 0 10px; }
  .navbar-inner { padding: 0 10px 0 16px; }
  .brand-name { font-size: 1rem; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .btn-lg { padding: 14px 22px; }
  .hero-actions .btn { width: 100%; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }

  /* card médico empilha em telas estreitas: foto em cima, texto em largura total */
  .team-card { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .team-card .media-portrait { width: 150px; }
  .team-info { text-align: center; }
}

/* ====================================================================
   SCROLL REVEAL — elementos surgem ao entrar na tela
   Só ativa com JS (.has-js), evitando que o conteúdo suma sem JavaScript.
   ==================================================================== */
.has-js .hero-copy > *,
.has-js .hero-media,
.has-js .strip-item,
.has-js .section-head,
.has-js .team-card,
.has-js .cards-grid .card,
.has-js .feature-media,
.has-js .feature-copy > *,
.has-js .pains .container > *,
.has-js .faq-item,
.has-js .contact-info > *,
.has-js .contact-map {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
/* estado revelado — espelha cada seletor acima + .is-visible para vencer
   a especificidade das regras que escondem (ex: .cards-grid .card, .pains .container > *) */
.has-js .hero-copy > *.is-visible,
.has-js .hero-media.is-visible,
.has-js .strip-item.is-visible,
.has-js .section-head.is-visible,
.has-js .team-card.is-visible,
.has-js .cards-grid .card.is-visible,
.has-js .feature-media.is-visible,
.has-js .feature-copy > *.is-visible,
.has-js .pains .container > *.is-visible,
.has-js .faq-item.is-visible,
.has-js .contact-info > *.is-visible,
.has-js .contact-map.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  /* sem animação, o conteúdo aparece imediatamente */
  .has-js [style*="transition-delay"],
  .has-js .hero-copy > *,
  .has-js .hero-media,
  .has-js .strip-item,
  .has-js .section-head,
  .has-js .team-card,
  .has-js .cards-grid .card,
  .has-js .feature-media,
  .has-js .feature-copy > *,
  .has-js .pains .container > *,
  .has-js .faq-item,
  .has-js .contact-info > *,
  .has-js .contact-map {
    opacity: 1 !important;
    transform: none !important;
  }
}
