/*
 * Alma Clara — theme.css
 * Arquitetonico Minimalista Premium
 * Paleta: Azul ardosia #1E2A3A + Off-white #F5F2EE + Dourado #C4A46B + Lavanda #ECEAF4
 * Tipografia: DM Serif Display + Inter
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --azul:        #1E2A3A;
  --azul-m:      #2C3E52;
  --azul-pale:   #EDF0F4;
  --azul-line:   #D0D8E4;
  --ouro:        #C4A46B;
  --ouro-cl:     #D9BF91;
  --ouro-pale:   #F7F3EC;
  --offwhite:    #F5F2EE;
  --branco:      #FFFFFF;
  --lavanda:     #ECEAF4;
  --lavanda-m:   #D6D2EA;
  --cinza-t:     #4A5568;
  --cinza-l:     #718096;
  --borda:       #E2DDD8;
  --preto:       #0D1117;
  --f-d:         'DM Serif Display', Georgia, serif;
  --f-c:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --px:          clamp(1.5rem, 5vw, 4rem);
  --r:           4px;
  --s3: .75rem; --s4: 1rem; --s5: 1.25rem; --s6: 1.5rem;
  --s8: 2rem;   --s10: 2.5rem; --s12: 3rem; --s16: 4rem;
  --s20: 5rem;  --s24: 6rem;
  --sh: 0 2px 20px rgba(30,42,58,.07);
  --shh: 0 8px 40px rgba(30,42,58,.14);
}

body { font-family: var(--f-c); font-size: 16px; background: var(--offwhite); color: var(--azul); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--f-c); cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.container--sm { max-width: 800px; margin: 0 auto; padding: 0 var(--px); }

h1, h2, h3, h4 { font-family: var(--f-d); font-weight: 400; line-height: 1.1; }
p { color: var(--cinza-t); line-height: 1.75; }

.label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-c); font-size: .63rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ouro);
  margin-bottom: var(--s5);
}
.label::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--ouro); }
.label--claro { color: var(--ouro-cl); }
.label--claro::before { background: var(--ouro-cl); }
.label--escuro { color: var(--azul); }
.label--escuro::before { background: var(--azul); }

/* BOTOES */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 14px 32px; font-family: var(--f-c); font-size: .7rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: var(--r); transition: all .22s; cursor: pointer; line-height: 1;
}
.btn--azul  { background: var(--azul); color: #fff; border: 2px solid var(--azul); }
.btn--azul:hover { background: var(--azul-m); border-color: var(--azul-m); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,42,58,.22); }
.btn--ouro  { background: var(--ouro); color: #fff; border: 2px solid var(--ouro); box-shadow: 0 4px 20px rgba(196,164,107,.3); }
.btn--ouro:hover { background: var(--ouro-cl); border-color: var(--ouro-cl); transform: translateY(-2px); }
.btn--out   { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn--out:hover { background: var(--azul); color: #fff; transform: translateY(-2px); }
.btn--out-c { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn--out-c:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* CABECALHO */
.cab {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center; padding: 0 var(--px);
  background: transparent; transition: background .3s, border .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.cab.sc {
  background: rgba(245,242,238,.97); border-bottom-color: var(--borda);
  box-shadow: 0 2px 20px rgba(30,42,58,.06); backdrop-filter: blur(8px);
}
.cab--esc { background: var(--azul) !important; border-bottom-color: rgba(255,255,255,.07) !important; }
.cab-logo { display: flex; align-items: center; gap: var(--s4); flex: 1; }
.cab-mark {
  width: 38px; height: 38px; border: 1.5px solid var(--ouro);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cab-mark svg { width: 18px; height: 18px; }
.cab-nome { font-family: var(--f-d); font-size: 1.12rem; color: var(--azul); }
.cab-crp { font-size: .6rem; color: var(--cinza-l); letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: 1px; }
.cab--esc .cab-nome { color: #fff; }
.cab--esc .cab-crp { color: rgba(255,255,255,.35); }
.cab-nav { display: flex; align-items: center; gap: var(--s8); list-style: none; }
.cab-nav a { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--azul); transition: color .2s; }
.cab-nav a:hover { color: var(--ouro); }
.cab--esc .cab-nav a { color: rgba(255,255,255,.55); }
.cab--esc .cab-nav a:hover { color: var(--ouro-cl); }
.cab-cta { margin-left: var(--s8); }

/* HERO */
.hero {
  min-height: 100vh; background: var(--azul);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-esq {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(72px + 6rem) var(--s12) var(--s24) var(--px);
  position: relative; z-index: 2;
}
.hero-eco {
  font-family: var(--f-d); font-size: clamp(6rem, 13vw, 12rem);
  color: transparent; -webkit-text-stroke: 1px rgba(196,164,107,.15);
  position: absolute; top: 50%; left: var(--px);
  transform: translateY(-50%); pointer-events: none; user-select: none;
  letter-spacing: -.04em; line-height: .85;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem); color: #fff;
  line-height: 1.0; margin-bottom: var(--s6); position: relative; z-index: 1;
}
.hero h1 .ouro { color: var(--ouro); }
.hero-desc { font-size: .97rem; color: rgba(255,255,255,.48); line-height: 1.8; max-width: 420px; margin-bottom: var(--s8); }
.hero-acoes { display: flex; gap: var(--s4); align-items: center; flex-wrap: wrap; margin-bottom: var(--s10); }
.hero-info { display: flex; align-items: center; gap: var(--s4); padding-top: var(--s8); border-top: 1px solid rgba(255,255,255,.07); }
.hero-info span { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.22); }

.hero-dir {
  position: relative; display: flex; align-items: flex-end;
  justify-content: center; padding: calc(72px + var(--s8)) var(--s8) 0 var(--s4); overflow: hidden;
}
.hero-foto-w { position: relative; width: 100%; max-width: 420px; height: 85%; max-height: 660px; }
.hero-foto-ph {
  width: 100%; height: 100%; background: linear-gradient(180deg, var(--azul-m), rgba(30,42,58,.55));
  display: flex; align-items: center; justify-content: center;
}
.hero-foto-ph span { font-family: var(--f-d); font-size: .95rem; font-style: italic; color: rgba(255,255,255,.2); text-align: center; line-height: 1.7; }
.hero-foto-w img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.9) contrast(1.05) saturate(.9); }
.hero-foto-w::before {
  content: ''; position: absolute; top: -16px; right: -16px;
  width: 55%; height: 55%; border-top: 1.5px solid rgba(196,164,107,.55);
  border-right: 1.5px solid rgba(196,164,107,.55); z-index: 3; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: 10%; left: -30px; background: #fff;
  padding: var(--s5) var(--s6); z-index: 4; min-width: 185px;
  box-shadow: 0 20px 60px rgba(30,42,58,.2);
}
.hero-badge-num { font-family: var(--f-d); font-size: 2.3rem; color: var(--azul); line-height: 1; margin-bottom: 2px; }
.hero-badge-bar { width: 24px; height: 2px; background: var(--ouro); margin-bottom: var(--s2); }
.hero-badge-txt { font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cinza-l); }

/* FAIXA NUMEROS */
.faixa-n {
  background: #fff; padding: var(--s10) var(--px);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--borda); gap: var(--s8); flex-wrap: wrap;
}
.fn-i {
  flex: 1; min-width: 130px; padding: var(--s4) var(--s6);
  border-left: 1px solid var(--borda);
}
.fn-i:first-child { border-left: none; }
.fn-n { font-family: var(--f-d); font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--azul); line-height: 1; }
.fn-n .ouro { color: var(--ouro); }
.fn-t { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cinza-l); line-height: 1.45; margin-top: 4px; }

/* APRESENTACAO */
.sec-apres { padding: var(--s24) 0; background: var(--offwhite); }
.apres-g { display: grid; grid-template-columns: 5fr 4fr; gap: var(--s20); align-items: center; }
.apres-foto { position: relative; }
.apres-foto-ph {
  width: 100%; aspect-ratio: 4/5; background: var(--azul-pale);
  display: flex; align-items: center; justify-content: center;
}
.apres-foto-ph span { font-family: var(--f-d); font-style: italic; color: var(--cinza-l); text-align: center; font-size: .9rem; line-height: 1.6; }
.apres-foto img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.apres-foto::after {
  content: ''; position: absolute; bottom: -18px; left: -18px; right: 18px; top: 18px;
  border: 1.5px solid rgba(196,164,107,.4); z-index: -1;
}
.apres-tag {
  position: absolute; top: var(--s6); right: calc(-1 * var(--s10));
  background: var(--ouro); color: #fff; padding: var(--s3) var(--s5);
  font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
}
.apres-t h2 { font-size: clamp(1.9rem, 3.5vw, 3.1rem); color: var(--azul); margin-bottom: var(--s5); }
.apres-intro {
  font-family: var(--f-d); font-size: 1.02rem; font-style: italic;
  color: var(--cinza-t); line-height: 1.75; margin-bottom: var(--s6);
  padding-bottom: var(--s6); border-bottom: 1px solid var(--borda);
}
.apres-body { font-size: .92rem; line-height: 1.85; margin-bottom: var(--s6); }
.form-lista { list-style: none; margin-bottom: var(--s8); }
.form-lista li {
  display: flex; align-items: flex-start; gap: var(--s4);
  padding: var(--s4) 0; border-bottom: 1px solid var(--borda);
  font-size: .87rem; color: var(--cinza-t); line-height: 1.5;
}
.form-lista li:last-child { border-bottom: none; }
.fl-ano { font-family: var(--f-d); font-size: .95rem; color: var(--ouro); min-width: 46px; flex-shrink: 0; }
.fl-tit { font-weight: 600; color: var(--azul); display: block; margin-bottom: 2px; font-size: .87rem; }
.fl-inst { font-size: .75rem; color: var(--cinza-l); }

/* SERVICOS */
.sec-sv { padding: var(--s24) 0; background: var(--azul); }
.sv-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: end; margin-bottom: var(--s16); }
.sv-header h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); color: #fff; }
.sv-header p { color: rgba(255,255,255,.4); font-size: .92rem; line-height: 1.8; max-width: 380px; }
.sv-lista { display: flex; flex-direction: column; }
.sv-item {
  display: grid; grid-template-columns: 76px 1fr 44px;
  align-items: center; gap: var(--s8);
  padding: var(--s8) 0; border-top: 1px solid rgba(255,255,255,.07);
  transition: all .2s; cursor: default;
}
.sv-item:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.sv-item:hover { background: rgba(255,255,255,.03); margin: 0 calc(-1 * var(--px)); padding-left: var(--px); padding-right: var(--px); }
.sv-num { font-family: var(--f-d); font-size: 3rem; color: rgba(196,164,107,.15); line-height: 1; }
.sv-conteudo h3 { font-family: var(--f-d); font-size: 1.28rem; color: #fff; margin-bottom: var(--s2); font-weight: 400; }
.sv-conteudo p { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.6; max-width: 520px; }
.sv-seta {
  width: 40px; height: 40px; border: 1px solid rgba(196,164,107,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--ouro-cl); font-size: .9rem; flex-shrink: 0; transition: all .2s;
}
.sv-item:hover .sv-seta { background: var(--ouro); border-color: var(--ouro); color: #fff; }

/* DEPOIMENTOS */
.sec-depo { padding: var(--s24) 0; background: #fff; }
.depo-g {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: var(--s4);
}
.depo-c {
  background: var(--offwhite); padding: var(--s10) var(--s8);
  transition: all .25s; display: flex; flex-direction: column;
}
.depo-c:hover { background: #fff; box-shadow: var(--shh); transform: translateY(-4px); }
.depo-c--dest {
  background: var(--azul); grid-column: 2; grid-row: 1/3;
  padding: var(--s12) var(--s10); justify-content: center;
}
.depo-c--dest:hover { background: var(--azul-m); }
.depo-q-mark { font-family: var(--f-d); font-size: 3.5rem; color: var(--ouro); line-height: .65; margin-bottom: var(--s5); opacity: .5; }
.depo-c--dest .depo-q-mark { opacity: 1; }
.depo-tx { font-family: var(--f-d); font-size: 1.02rem; font-style: italic; color: var(--azul); line-height: 1.65; margin-bottom: var(--s6); flex: 1; }
.depo-c--dest .depo-tx { color: #fff; font-size: 1.18rem; }
.depo-a { display: flex; align-items: center; gap: var(--s4); border-top: 1px solid var(--borda); padding-top: var(--s5); margin-top: auto; }
.depo-c--dest .depo-a { border-top-color: rgba(255,255,255,.1); }
.depo-ini {
  width: 36px; height: 36px; background: var(--azul-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d); font-size: 1rem; color: var(--azul); flex-shrink: 0;
}
.depo-c--dest .depo-ini { background: rgba(255,255,255,.1); color: #fff; }
.depo-info strong { display: block; font-size: .83rem; font-weight: 600; color: var(--azul); }
.depo-c--dest .depo-info strong { color: #fff; }
.depo-info span { font-size: .7rem; color: var(--cinza-l); }
.depo-c--dest .depo-info span { color: rgba(255,255,255,.38); }

/* CITACAO */
.faixa-cit {
  padding: var(--s16) var(--px); background: var(--ouro-pale);
  border-top: 1px solid rgba(196,164,107,.35); border-bottom: 1px solid rgba(196,164,107,.35);
  text-align: center;
}
.cit-qq { font-family: var(--f-d); font-size: 4.5rem; color: var(--ouro); line-height: .55; opacity: .22; margin-bottom: var(--s6); }
.cit-fr { font-family: var(--f-d); font-size: clamp(1.2rem, 2.5vw, 1.85rem); font-style: italic; color: var(--azul); line-height: 1.5; max-width: 680px; margin: 0 auto var(--s5); }
.cit-aut { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ouro); }

/* PROCESSO */
.sec-proc { padding: var(--s24) 0; background: var(--lavanda); }
.proc-g {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: var(--s12);
}
.proc-g::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--lavanda-m);
}
.passo {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 var(--s6); position: relative; z-index: 1;
}
.passo-n {
  width: 48px; height: 48px; background: var(--azul); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d); font-size: 1.18rem; margin-bottom: var(--s5); flex-shrink: 0;
}
.passo h4 { font-family: var(--f-c); font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--azul); margin-bottom: var(--s3); }
.passo p { font-size: .82rem; color: var(--cinza-t); line-height: 1.65; }

/* FAQ */
.sec-faq { padding: var(--s24) 0; background: #fff; }
.faq-g { display: grid; grid-template-columns: 3fr 5fr; gap: var(--s16); align-items: start; }
.faq-esq h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--azul); margin-bottom: var(--s5); }
.faq-esq p { font-size: .9rem; line-height: 1.8; margin-bottom: var(--s8); }
.faq-w { display: flex; flex-direction: column; }
.faq-i { border-top: 1px solid var(--borda); }
.faq-i:last-child { border-bottom: 1px solid var(--borda); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); padding: var(--s6) 0; font-size: .92rem; font-weight: 500;
  color: var(--azul); text-align: left; background: none; border: none; cursor: pointer; transition: color .2s;
}
.faq-btn:hover { color: var(--ouro); }
.faq-ic {
  width: 26px; height: 26px; border: 1.5px solid var(--azul-line);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--azul); flex-shrink: 0; transition: all .2s; line-height: 1;
}
.faq-btn[aria-expanded="true"] .faq-ic { background: var(--azul); color: #fff; border-color: var(--azul); transform: rotate(45deg); }
.faq-r { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-r.open { max-height: 400px; padding-bottom: var(--s6); }
.faq-r p { font-size: .87rem; line-height: 1.85; color: var(--cinza-t); padding-right: var(--s8); }

/* CTA FINAL */
.sec-cta {
  padding: var(--s24) var(--px); background: var(--azul);
  position: relative; overflow: hidden; text-align: center;
}
.sec-cta::before, .sec-cta::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(196,164,107,.06); pointer-events: none;
}
.sec-cta::before { right: -80px; top: -80px; width: 480px; height: 480px; }
.sec-cta::after  { right: -30px; top: -30px; width: 320px; height: 320px; }
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; margin-bottom: var(--s5); line-height: 1.05; }
.cta-inner h2 .ouro { color: var(--ouro); }
.cta-inner p { color: rgba(255,255,255,.42); font-size: .95rem; line-height: 1.8; max-width: 460px; margin: 0 auto var(--s10); }
.cta-acoes { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s8); }
.cta-crp { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.18); }

/* FOOTER */
.footer { background: var(--preto); padding: var(--s16) var(--px) var(--s8); }
.footer-g { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--s10); padding-bottom: var(--s10); border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: var(--s8); }
.footer-nome { font-family: var(--f-d); font-size: 1.1rem; color: #fff; margin-bottom: var(--s3); }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.26); line-height: 1.75; max-width: 230px; margin-bottom: var(--s6); }
.footer-col-t { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ouro); margin-bottom: var(--s5); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.footer-col ul a { font-size: .8rem; color: rgba(255,255,255,.34); transition: color .2s; }
.footer-col ul a:hover { color: rgba(255,255,255,.72); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s4); }
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.18); }

/* PAGE HERO */
.page-hero {
  padding: calc(72px + var(--s16)) var(--px) var(--s12);
  background: var(--azul); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); color: #fff; max-width: 700px; margin-bottom: var(--s5); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.4); font-size: .95rem; max-width: 500px; line-height: 1.75; position: relative; z-index: 1; }

/* FORMULARIO */
.form-campo { margin-bottom: var(--s5); }
.form-label { display: block; font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--azul); margin-bottom: var(--s2); }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--borda);
  background: #fff; font-family: var(--f-c); font-size: .9rem; color: var(--azul);
  transition: border-color .2s, box-shadow .2s; outline: none; border-radius: var(--r);
}
.form-input:focus, .form-textarea:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(30,42,58,.08); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

/* CARTOES SERVICOS */
.grid-sv { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s6); margin-top: var(--s12); }
.card-sv {
  background: #fff; padding: var(--s10) var(--s8);
  border: 1.5px solid var(--borda); transition: all .25s; position: relative;
}
.card-sv::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ouro); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card-sv:hover { border-color: var(--azul-line); box-shadow: var(--shh); transform: translateY(-4px); }
.card-sv:hover::before { transform: scaleX(1); }
.csv-n { font-family: var(--f-d); font-size: 2.8rem; color: var(--azul-pale); line-height: 1; margin-bottom: var(--s4); }
.card-sv h3 { font-size: 1.25rem; color: var(--azul); margin-bottom: var(--s3); }
.card-sv p { font-size: .87rem; line-height: 1.8; margin-bottom: var(--s5); }
.csv-lnk { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ouro); display: flex; align-items: center; gap: 6px; transition: gap .2s; }
.csv-lnk::after { content: '\2192'; }
.csv-lnk:hover { gap: 10px; }

/* WPP FLOAT */
.wpp-f {
  position: fixed; bottom: var(--s8); right: var(--s8); z-index: 999;
  width: 52px; height: 52px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all .22s;
}
.wpp-f:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,.5); }
.wpp-f svg { width: 26px; height: 26px; }

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-esq { padding: calc(72px + 4rem) var(--px) var(--s12); justify-content: flex-start; }
  .hero-dir, .hero-eco { display: none; }
  .apres-g { grid-template-columns: 1fr; }
  .apres-tag, .apres-foto::after { display: none; }
  .sv-header { grid-template-columns: 1fr; gap: var(--s6); }
  .depo-g { grid-template-columns: 1fr; }
  .depo-c--dest { grid-column: 1; grid-row: auto; }
  .faq-g { grid-template-columns: 1fr; }
  .footer-g { grid-template-columns: 1fr 1fr; }
  .grid-sv { grid-template-columns: 1fr; }
  .proc-g { grid-template-columns: 1fr 1fr; }
  .proc-g::before { display: none; }
  .faixa-n { flex-direction: column; gap: 0; }
  .fn-i { border-left: none; border-top: 1px solid var(--borda); }
  .fn-i:first-child { border-top: none; }
}
@media (max-width: 600px) {
  .cab-nav, .cab-cta { display: none; }
  .proc-g { grid-template-columns: 1fr; }
  .footer-g { grid-template-columns: 1fr; }
}
