/* =========================================================
   Fisioclínica Campinas — Medicina Hiperbárica
   Design tokens
   ========================================================= */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/pjs-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/pjs-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+0300-036F;
}

:root {
  /* Brand — derivado da identidade visual do logo (azul hiperbárico) */
  --navy-950: #0a2740;
  --navy-900: #0d3a5c;
  --navy-800: #114a73;
  --brand-700: #1c5c8c;
  --brand-600: #2777ab;
  --brand-500: #3d8bc4;
  --brand-100: #e8f2fa;
  --brand-50:  #f4f9fc;

  --wa-green: #108048;
  --wa-green-dark: #0c6838;

  --ink-900: #0f2233;
  --ink-700: #33495a;
  --ink-500: #5c7286;
  --ink-300: #93a5b3;

  --surface: #ffffff;
  --bg: #f7fafc;
  --border: #e1e8ef;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --container-narrow: 780px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(15,34,51,.06), 0 1px 1px rgba(15,34,51,.04);
  --shadow-md: 0 8px 24px rgba(15,34,51,.10);
  --shadow-lg: 0 20px 48px rgba(10,39,64,.16);

  --header-h: 76px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
svg { fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy-900); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-600);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--brand-500); }

h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; color: var(--navy-900); }
h3.subtitle { font-size: 20px; margin: 40px 0 18px; color: var(--navy-900); }
.section-intro { font-size: 17px; color: var(--ink-700); max-width: 100%; margin-bottom: 8px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; text-align: center;
  border-radius: 999px; padding: 14px 26px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--whatsapp { background: var(--wa-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: var(--wa-green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

@media (max-width: 480px) {
  .btn--lg { white-space: normal; text-align: center; font-size: 15px; padding: 16px 22px; }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.site-header__inner { display: flex; align-items: center; gap: 24px; width: 100%; }
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand__logo { height: 40px; width: auto; }

.site-nav { display: none; gap: 28px; margin-left: 12px; flex: 1; }
.site-nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-700); transition: color .15s; white-space: nowrap; }
.site-nav a:hover { color: var(--brand-600); }

.header-cta { display: none; margin-left: auto; flex-shrink: 0; }

.menu-toggle {
  margin-left: auto; width: 42px; height: 42px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

@media (max-width: 899px) {
  .site-nav {
    display: flex;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px 24px 20px; gap: 4px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .18s ease, opacity .18s ease, visibility .18s;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border-bottom: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,39,64,.94) 20%, rgba(13,58,92,.82) 55%, rgba(20,80,120,.55) 100%);
}
.hero__content { position: relative; padding: 96px 24px 72px; max-width: 760px; }
.hero h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 20px; color: #fff; }
.hero__sub { font-size: 18px; color: #dbe9f4; max-width: 600px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.hero__trust { font-size: 14px; color: #cfe2ee; }
.hero__trust strong { color: #fff; }

@media (min-width: 900px) {
  .hero__content { padding: 140px 24px 110px; }
}

/* =========================================================
   Sections generic
   ========================================================= */
.section { padding: 72px 0; position: relative; overflow: hidden; }
.section--tint { background: linear-gradient(180deg, #ffffff 0%, var(--brand-50) 40%, #eaf3fa 100%); }
.section--dark {
  background: radial-gradient(ellipse 900px 600px at 12% 0%, var(--navy-800) 0%, var(--navy-950) 55%) fixed, var(--navy-950);
  color: #fff;
}
.section--dark h2 { color: #fff; }
.section--dark p { color: #c7d9e5; }

/* Soft decorative color blobs — used sparingly to break up flat white sections */
.blob {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.blob--brand { background: radial-gradient(circle, rgba(61,139,196,.20), rgba(61,139,196,0) 70%); }
.blob--green { background: radial-gradient(circle, rgba(16,128,72,.14), rgba(16,128,72,0) 70%); }
.section > .wrap, .section > .blob + .wrap { position: relative; z-index: 1; }

.cenario__blob { width: 620px; height: 620px; top: -220px; right: -160px; }

/* =========================================================
   Cenário / Problema — texto + card de estatística
   ========================================================= */
.cenario__grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
.cenario__text h2 { max-width: 560px; }
.cenario__text p + p { margin-top: 16px; }
.cenario__text p { color: var(--ink-700); font-size: 17px; }

.cenario__stat {
  background: linear-gradient(160deg, var(--brand-600), var(--navy-900));
  color: #fff; border-radius: var(--radius-lg); padding: 44px 32px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cenario__stat-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.cenario__stat-icon svg { width: 28px; height: 28px; fill: none; }
.cenario__stat strong { display: block; font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 12px; }
.cenario__stat span { display: block; font-size: 14px; color: rgba(255,255,255,.85); max-width: 220px; margin: 0 auto; }

@media (min-width: 900px) {
  .cenario__grid { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}

/* =========================================================
   Cards — diferenciais
   ========================================================= */
.cards-3 { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 760px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card-diff {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 26px; position: relative;
}
.card-diff__num {
  display: inline-block; font-size: 14px; font-weight: 800; color: var(--brand-500);
  background: var(--brand-100); border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}
.card-diff h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy-900); }
.card-diff p { font-size: 14.5px; color: var(--ink-700); }

.cards-2 { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 760px) { .cards-2 { grid-template-columns: 1fr 1fr; } }
.cards-2--validacao { margin-top: 20px; }

.card-soft {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand-100); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; fill: none; }
.card-soft h3 { font-size: 17px; margin: 8px 0 10px; color: var(--navy-900); }
.card-soft p { font-size: 14.5px; color: var(--ink-700); }

.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--brand-600); background: var(--brand-100); border-radius: 999px; padding: 4px 12px;
}
.tag--accent { color: var(--wa-green-dark); background: #e3f9ec; }

.card-model {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.card-model--accent { border-color: #bfe9cf; }
.card-model h4 { font-size: 19px; color: var(--navy-900); }
.card-model p { font-size: 14.5px; color: var(--ink-700); flex: 1; }
.card-model__link { font-weight: 700; color: var(--brand-600); font-size: 14.5px; margin-top: 6px; }
.card-model--accent .card-model__link { color: var(--wa-green-dark); }
.card-model__link:hover { text-decoration: underline; }

/* =========================================================
   Galeria — carrossel
   ========================================================= */
.galeria__caption { margin: 24px auto 0; font-size: 14px; color: var(--ink-500); max-width: 620px; text-align: center; padding: 0 24px; }

.carousel {
  position: relative; margin: 32px auto 0; max-width: var(--container); padding: 0 24px;
}
.carousel__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 12px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 auto; scroll-snap-align: start;
  width: 240px; height: 420px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.carousel__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in;
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .2s ease;
}
.carousel__slide:hover img { transform: scale(1.05); }

.carousel__nav {
  display: none; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-md);
  align-items: center; justify-content: center; color: var(--navy-900); transition: background .2s ease;
}
.carousel__nav:hover { background: var(--brand-100); }
.carousel__nav svg { width: 22px; height: 22px; }
.carousel__nav--prev { left: -6px; }
.carousel__nav--next { right: -6px; }

@media (min-width: 640px) {
  .carousel__slide { width: 280px; height: 480px; }
}

@media (min-width: 1000px) {
  .carousel__nav { display: flex; }
}

/* =========================================================
   Check list (indicações)
   ========================================================= */
.check-list { display: grid; gap: 10px; grid-template-columns: 1fr; margin-bottom: 8px; }
@media (min-width: 760px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li {
  position: relative; padding: 10px 14px 10px 40px; font-size: 15px; color: var(--ink-900);
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
}
.check-list li::before {
  content: ""; position: absolute; left: 14px; top: 12px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-100);
}
.check-list li::after {
  content: ""; position: absolute; left: 19.5px; top: 16.5px; width: 8px; height: 4px;
  border-left: 2px solid var(--brand-600); border-bottom: 2px solid var(--brand-600);
  transform: rotate(-45deg);
}

/* =========================================================
   VSL / Video player
   ========================================================= */
.vsl__inner { text-align: center; }
.vsl__text-col { margin-bottom: 36px; }
.vsl__text { max-width: 620px; margin: 0 auto 28px; }
.vsl__text-col .btn { margin: 0 auto; }
.video-player {
  position: relative; width: min(360px, 90vw); aspect-ratio: 1 / 1; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: #000;
}

@media (min-width: 900px) {
  .vsl__inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
    text-align: left;
  }
  .vsl__text-col { margin-bottom: 0; }
  .vsl__text { margin: 0 0 28px; max-width: 460px; }
  .vsl__text-col .btn { margin: 0; }
  .video-player { width: min(420px, 100%); margin: 0 0 0 auto; }
}
.video-player__poster, .video-player video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-player__play {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .15s ease;
}
.video-player__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-player__play:hover { transform: scale(1.06); }
.video-player.is-playing .video-player__play,
.video-player.is-playing .video-player__poster { display: none; }

/* =========================================================
   Sobre
   ========================================================= */
.sobre__grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
.sobre__media img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; display: block; }
.sobre__media-main { position: relative; }
.sobre__media-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.sobre__media-duo img { height: 140px; object-fit: cover; box-shadow: var(--shadow-sm); }
.sobre__content p { color: var(--ink-700); font-size: 15.5px; margin-bottom: 14px; }
.sobre__closing {
  font-weight: 700; color: var(--navy-900) !important; font-size: 17px;
  padding-left: 18px; border-left: 3px solid var(--brand-500); margin-top: 22px !important;
}

.stat-badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 18px 14px; display: flex; align-items: center; justify-content: center; gap: 18px;
}
.stat-badge__item { text-align: center; }
.stat-badge__item strong { display: block; font-size: 28px; font-weight: 800; color: var(--brand-600); line-height: 1; }
.stat-badge__item span { display: block; font-size: 11.5px; color: var(--ink-500); margin-top: 4px; max-width: 100px; }
.stat-badge__divider { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }

@media (min-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr 1.15fr; }
  .sobre__media-duo img { height: 160px; }
  .stat-badge { left: auto; right: -24px; bottom: 32px; width: 250px; padding: 20px 18px; }
  .stat-badge__item strong { font-size: 30px; }
}

/* =========================================================
   Dúvidas / Accordion
   ========================================================= */
.accordion { margin-top: 32px; border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; text-align: left; font-size: 16.5px; font-weight: 700; color: var(--navy-900);
}
.accordion__chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--brand-500); transition: transform .2s ease; }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.accordion__panel p { padding: 0 4px 20px; color: var(--ink-700); font-size: 15px; max-width: 680px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.tag-cloud span {
  font-size: 12.5px; color: var(--ink-500); background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
}

/* =========================================================
   Contato
   ========================================================= */
.contato__grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 32px; }
.contato__info { display: flex; flex-direction: column; gap: 20px; }
.contato__info .card-soft .btn { margin-top: 14px; }
.contato__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 320px; }
.contato__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

@media (min-width: 900px) {
  .contato__grid { grid-template-columns: 1fr 1.1fr; }
}

/* =========================================================
   CTA final
   ========================================================= */
.cta-final__inner { text-align: center; }
.cta-final__inner p { max-width: 520px; margin: 0 auto 28px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-950); color: #cbdae6; padding: 64px 0 0; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer__logo { height: 34px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer h3 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.site-footer p { font-size: 14px; margin-bottom: 8px; }
.site-footer .muted { color: #93a9ba; }
.footer__regions { font-weight: 600; color: #e8f2fa; }
.footer__nav li { margin-bottom: 8px; }
.footer__nav a { font-size: 14px; color: #cbdae6; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  margin-top: 48px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px; color: #7d94a5; text-align: center;
}
.footer__bottom a { color: #9db4c4; text-decoration: underline; }
.footer__bottom a:hover { color: #fff; }

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa-green);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 10px 28px rgba(16,128,72,.45);
  animation: float-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.06); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(16,128,72,.45); }
  50% { box-shadow: 0 10px 28px rgba(16,128,72,.7), 0 0 0 10px rgba(16,128,72,.12); }
}

/* =========================================================
   Reveal on scroll — cascade with per-item stagger (--d, set in JS)
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Hero — entrance animation (runs once on load, not scroll-tied)
   ========================================================= */
.hero__content > * { opacity: 0; transform: translateY(20px); animation: hero-in .8s cubic-bezier(.16,1,.3,1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .15s; }
.hero__content > *:nth-child(3) { animation-delay: .25s; }
.hero__content > *:nth-child(4) { animation-delay: .35s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { animation: none; opacity: 1; transform: none; }
}

/* =========================================================
   Hover lift — consistent micro-interaction across all cards
   ========================================================= */
.card-diff, .card-soft, .card-model {
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.card-diff:hover, .card-soft:hover, .card-model:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent;
}
.accordion__trigger { transition: color .2s ease; }
.accordion__trigger:hover { color: var(--brand-600); }

/* =========================================================
   Lightbox — click to enlarge (galeria + sobre photos)
   ========================================================= */
.js-lightbox { cursor: zoom-in; transition: filter .2s ease; }
.js-lightbox:hover { filter: brightness(1.05); }

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8,20,32,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw; max-height: 88vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  object-fit: contain;
  opacity: 0; transform: scale(.97); transition: opacity .25s ease, transform .25s ease;
}
.lightbox.is-open .lightbox__img { opacity: 1; transform: none; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover { background: rgba(255,255,255,.24); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
}
