/* ============================================================
   CASA GRIMALDI · SISTEMA VISUAL
   v1.0 · 03/05/2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500&family=Jost:wght@200;300;400;500&display=swap');

/* ── VARIÁVEIS ──────────────────────────────────────────── */
:root {
  --nevoa:        #F2F1ED;
  --warm-white:   #FAFAF7;
  --neblina:      #D4D2CC;
  --quartzo:      #E8E0D8;
  --cimento:      #8C8279;
  --taupe:        #A8A49C;
  --ardosia:      #8E9AA3;
  --carbono:      #1E1B18;
  --deep:         #2E2B27;
  --amber:        #BF9C68;
  --amber-soft:   rgba(191, 156, 104, 0.25);
  --amber-line:   rgba(191, 156, 104, 0.4);
  --line-light:   rgba(30, 27, 24, 0.08);
  --line-medium:  rgba(30, 27, 24, 0.15);
  --line-dark:    rgba(255, 255, 255, 0.06);
  --line-dark-md: rgba(255, 255, 255, 0.12);

  --max-w:        1280px;
  --max-text:     720px;

  --pad-x:        48px;
  --pad-y:        96px;

  --t-fast:       180ms;
  --t-base:       320ms;
  --t-slow:       560ms;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --pad-y: 56px;
  }
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--carbono);
  background: var(--nevoa);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── TIPOGRAFIA ────────────────────────────────────────── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
}
.h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 100;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--carbono);
}
.h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: var(--carbono);
}
.h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: inline-block;
}
p { font-size: 15px; line-height: 1.85; color: var(--carbono); }
.lead { font-size: 16px; line-height: 1.85; color: var(--cimento); max-width: 580px; }
.muted { color: var(--taupe); }
.amber-rule { width: 32px; height: 1px; background: var(--amber); margin: 20px 0; }

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--pad-y) 0; }
.section--carbono { background: var(--carbono); color: var(--nevoa); }
.section--carbono p { color: var(--taupe); }
.section--carbono .h1,
.section--carbono .h2 { color: var(--nevoa); }
.section--deep { background: var(--deep); color: var(--nevoa); }
.section--deep p { color: var(--taupe); }
.section--deep .h1,
.section--deep .h2 { color: var(--nevoa); }
.section--nevoa { background: var(--nevoa); color: var(--carbono); }

/* ── NAVBAR ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 27, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--t-base) var(--ease);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo svg { height: 72px; width: auto; }
.nav-logo svg path,
.nav-logo svg circle { fill: var(--nevoa); transition: fill var(--t-fast) var(--ease); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--t-fast) var(--ease);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--carbono);
  padding: 11px 24px;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav-cta:hover { background: #d4ad77; }
.nav-cta:active { transform: scale(0.97); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px;
  height: 1px;
  background: var(--nevoa);
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* dropdown tratamentos */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--carbono);
  border: 1px solid var(--line-dark-md);
  padding: 20px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility var(--t-base);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 13px;
  color: var(--taupe);
}
.nav-dropdown a:hover { color: var(--amber); background: var(--deep); }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--carbono);
    flex-direction: column;
    gap: 0;
    padding: 0 var(--pad-x) 32px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-110%);
    transition: transform var(--t-base) var(--ease);
    align-items: stretch;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav.is-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-cta { margin-top: 16px; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0 0 12px 16px;
    min-width: 0;
  }
  .nav-dropdown a { padding: 10px 0; border: none; font-size: 12px; }
}

/* spacer to compensate fixed nav (nav ~104px: logo 72px + padding 32px) */
main { padding-top: 104px; }

/* ── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--amber { background: var(--amber); color: var(--carbono); }
.btn--amber:hover { background: #d4ad77; }
.btn--ghost { background: transparent; color: var(--nevoa); border: 1px solid var(--amber); }
.btn--ghost:hover { background: var(--amber); color: var(--carbono); }
.btn--ghost-dark { background: transparent; color: var(--carbono); border: 1px solid var(--carbono); }
.btn--ghost-dark:hover { background: var(--carbono); color: var(--nevoa); }
.btn--whatsapp { background: #25D366; color: #FFFFFF; }
.btn--whatsapp:hover { background: #20BA5A; }
.btn-arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.link-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--amber);
  border-bottom: 1px solid var(--amber-soft);
  padding-bottom: 4px;
  transition: border-color var(--t-fast) var(--ease);
}
.link-amber:hover { border-color: var(--amber); }
.link-amber svg { transition: transform var(--t-fast) var(--ease); }
.link-amber:hover svg { transform: translateX(3px); }

/* ── HERO PADRÃO ───────────────────────────────────────── */
.hero {
  background: var(--carbono);
  color: var(--nevoa);
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: var(--pad-x);
  width: 40px; height: 2px;
  background: var(--amber);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; }
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 100;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--nevoa);
  margin: 24px 0 28px;
}
.hero-headline em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--taupe);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--amber-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::before,
.hero-photo::after,
.hero-photo > .corner-bl,
.hero-photo > .corner-br {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--amber);
  pointer-events: none;
}
.hero-photo::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-photo::after  { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hero-photo .corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hero-photo .corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}
.photo-placeholder span:first-child {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.6;
}
.photo-placeholder span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 200;
  color: var(--taupe);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 480px; margin: 0 auto; }
}

/* ── MÉTRICAS DO HERO ──────────────────────────────────── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  margin-top: 64px;
}
.hero-metrics > div {
  padding: 28px 32px;
  border-right: 1px solid var(--line-dark);
}
.hero-metrics > div:last-child { border-right: none; }
.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 100;
  color: var(--amber);
}
.metric-txt {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.5px;
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics > div { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 20px 0; }
  .hero-metrics > div:last-child { border-bottom: none; }
}

/* ── CONTEÚDO EDITORIAL ────────────────────────────────── */
.prose { max-width: var(--max-text); margin: 0 auto; }
.prose p + p { margin-top: 1.4em; }
.prose .h2 { margin-bottom: 32px; }
.prose .h2 + p { margin-top: 0; }
.prose-wide { max-width: 880px; margin: 0 auto; }

.disclaimer {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--taupe);
  font-style: italic;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.section--carbono .disclaimer,
.section--deep .disclaimer { border-top-color: var(--line-dark); color: var(--cimento); }

/* ── CARDS DE TRATAMENTO ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  margin-top: 56px;
}
.cards-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.t-card {
  background: var(--nevoa);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  position: relative;
}
.t-card:hover { background: var(--carbono); color: var(--nevoa); }
.t-card:hover .t-card-name { color: var(--nevoa); }
.t-card:hover .t-card-arrow { color: var(--amber); transform: translateX(4px); }
.t-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--carbono);
  transition: color var(--t-fast) var(--ease);
}
.t-card-arrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 16px;
  color: var(--amber);
  transition: transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 900px) { .cards-grid, .cards-grid--cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cards-grid, .cards-grid--cols-4 { grid-template-columns: 1fr; } }

/* ── DEPOIMENTOS ───────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testimonial {
  background: var(--warm-white);
  border: 1px solid var(--line-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--quartzo);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--cimento);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--carbono);
  flex: 1;
}
.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--carbono);
  letter-spacing: 0.5px;
}
.testimonial-pending {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.5;
  display: block;
  margin-top: 8px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ── EQUIPE BLOCK ──────────────────────────────────────── */
.team-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--deep);
  border: 1px solid var(--amber-soft);
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .team-block { grid-template-columns: 1fr; gap: 40px; } }

/* ── CTA FINAL ─────────────────────────────────────────── */
.cta-final {
  text-align: center;
  padding: 80px 0;
}
.cta-final .h2 { max-width: 720px; margin: 0 auto 16px; color: var(--nevoa); }
.cta-final .cta-sub {
  font-size: 14px;
  color: var(--taupe);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.cta-final-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--deep);
  color: var(--taupe);
  padding: 72px 0 32px;
  font-size: 13px;
  line-height: 1.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo svg { height: 32px; width: auto; margin-bottom: 24px; }
.footer-logo svg path,
.footer-logo svg circle { fill: var(--nevoa); }
.footer h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 8px; }
.footer a { color: var(--taupe); transition: color var(--t-fast) var(--ease); }
.footer a:hover { color: var(--amber); }
.footer-base {
  border-top: 1px solid var(--line-dark-md);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--cimento);
  letter-spacing: 0.5px;
}
.footer-base a { color: var(--cimento); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-logo { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMAÇÕES — sistema unificado
   curva única: cubic-bezier(0.22, 1, 0.36, 1)
   direção única: baixo para cima
   ============================================================ */

/* ── 1. NAVBAR smart-scroll ────────────────────────────── */
.nav.is-scrolled {
  padding: 0;
  background: rgba(30, 27, 24, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.nav.is-scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
.nav.is-scrolled .nav-logo svg { height: 56px; }
.nav-inner { transition: padding var(--t-base) var(--ease); }
.nav-logo svg { transition: height var(--t-base) var(--ease); }

/* ── 2. LINHA ÂMBAR DRAWING ────────────────────────────── */
.hero::before {
  /* a linha âmbar começa com largura 0 e cresce */
  width: 0;
  animation: line-grow var(--t-slow) var(--ease) 200ms forwards;
}
@keyframes line-grow {
  from { width: 0; }
  to { width: 40px; }
}

/* ── 3. REVEAL ON SCROLL (existente, refinado) ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }
.reveal-delay-4 { transition-delay: 480ms; }

/* ── 5. KEN BURNS no hero photo ────────────────────────── */
.hero-photo img,
.team-photo img {
  animation: ken-burns 24s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

/* ── 6. STAGGER nos cards de tratamento ────────────────── */
.cards-grid.reveal.is-visible .t-card {
  opacity: 0;
  transform: translateY(16px);
  animation: card-in var(--t-base) var(--ease) forwards;
}
.cards-grid.reveal.is-visible .t-card:nth-child(1)  { animation-delay: 0ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(2)  { animation-delay: 60ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(3)  { animation-delay: 120ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(4)  { animation-delay: 180ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(5)  { animation-delay: 240ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(6)  { animation-delay: 300ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(7)  { animation-delay: 360ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(8)  { animation-delay: 420ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(9)  { animation-delay: 480ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(10) { animation-delay: 540ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(11) { animation-delay: 600ms; }
.cards-grid.reveal.is-visible .t-card:nth-child(12) { animation-delay: 660ms; }
@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ── HOVER GLOBAL — botões, links, cards (consistência) ── */
.btn, .nav-cta, .link-amber, .t-card,
.testimonial, .agendar-card {
  transition: all var(--t-fast) var(--ease);
}
.btn--amber:hover { transform: translateY(-1px); }
.btn--amber:active { transform: translateY(0); }
.btn--ghost:hover { transform: translateY(-1px); }
.btn--whatsapp:hover { transform: translateY(-1px); }
.testimonial:hover { border-color: var(--amber-soft); transform: translateY(-2px); }

/* ── PREFERS-REDUCED-MOTION (override de tudo) ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero::before { width: 40px; }
  .hero-photo img, .team-photo img { animation: none; transform: none; }
  .cards-grid.reveal.is-visible .t-card { opacity: 1; transform: none; }
}

/* ── LINK INTERNO INLINE (dentro do copy) ──────────────── */
.prose a, p a {
  color: var(--amber);
  border-bottom: 1px solid var(--amber-soft);
  transition: border-color var(--t-fast) var(--ease);
}
.prose a:hover, p a:hover { border-color: var(--amber); }
.section--carbono .prose a, .section--carbono p a,
.section--deep .prose a, .section--deep p a { color: var(--amber); }

/* ── INTRODUÇÃO EM ITÁLICO (clareamento) ───────────────── */
.intro-italic {
  font-style: italic;
  color: var(--cimento);
  font-size: 16px;
  line-height: 1.85;
  max-width: var(--max-text);
  margin: 24px auto 56px;
  text-align: center;
}
