/* ============================================================
   components.css — Componentes Específicos
   Dra. Ana Paula Costa · Advocacia Tributária · V3
   ============================================================ */

/* ----------------------------------------------------------
   0. PARALLAX BREAK — faixa de imagem fixa entre seções
   ---------------------------------------------------------- */
.parallax-break {
  height: 400px;
  background-image: url('/images/escritorio.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  /* sem overlay, sem conteúdo, sem filhos */
}

@media (max-width: 768px) {
  .parallax-break {
    background-attachment: scroll;
    height: 260px;
  }
}

/* ----------------------------------------------------------
   0b. FLOATING CARDS — sobrepostos à transição hero → conteúdo
   ---------------------------------------------------------- */
.floating-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
  margin-top: -80px;   /* sobe sobre a onda */
  margin-bottom: 0;
}

.floating-card {
  background: rgba(253,250,246,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,168,76,.50);
  border-top: 2px solid var(--dourado);  /* linha dourada sempre visível */
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(56,32,28,.14);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
}
.floating-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(56,32,28,.20);
  background: rgba(253,250,246,.96);
}

/* ::before desativado — border-top fixo substitui a linha animada */
.floating-card::before { display: none; }

.fc-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(56,32,28,.08);
  border: 1px solid rgba(201,168,76,.4);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--marsala);
  transition: background .4s, color .4s;
  flex-shrink: 0;
}
.floating-card:hover .fc-icon { background: var(--marsala); color: var(--dourado-200); }
.fc-icon svg { width: 24px; height: 24px; }

.floating-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--marsala);
  margin-bottom: 10px;
  line-height: 1.15;
}
.floating-card p {
  font-size: .95rem;
  color: var(--cinza-txt);
  margin-bottom: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .floating-cards {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
}

/* ----------------------------------------------------------
   1. CARDS DE ÁREA — barra dourada cresce no hover
   ---------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  padding: 40px 34px;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.area-card::before {
  content: ""; position: absolute; left: 0; top: 0;
  height: 3px; width: 0; background: var(--dourado);
  transition: width .5s var(--ease);
}
.area-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(201,168,76,.18), 0 4px 12px rgba(56,32,28,.08); border-color: rgba(201,168,76,.4); }
.area-card:hover::before { width: 100%; }

.area-ic {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.5);
  display: grid; place-items: center;
  margin: 0 0 22px; color: var(--marsala);
  transition: background .4s, color .4s;
}
.area-card:hover .area-ic { background: var(--marsala); color: var(--dourado-200); }
.area-ic svg { width: 26px; height: 26px; }
.area-card h3 { color: var(--marsala); margin-bottom: 12px; }
.area-num { font-family: var(--serif); font-size: 1rem; color: var(--dourado-600); letter-spacing: .1em; margin-bottom: 14px; display: block; }
.area-card p { color: var(--cinza-txt); font-size: .97rem; margin-bottom: 22px; }

@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .areas-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   2. DIFERENCIAIS / STATS GRID
   ---------------------------------------------------------- */
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.diff-item {
  padding: 40px 28px;
  background: var(--marsala);
  border: 1px solid rgba(201,168,76,.12);
  text-align: center;
  transition: background .3s;
}
.diff-item:hover { background: var(--marsala-700); }
.diff-num {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--dourado); line-height: 1; display: block; margin-bottom: 8px;
}
.diff-label {
  font-size: .88rem; color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: .12em;
}
@media (max-width: 768px) { .diffs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .diffs-grid { grid-template-columns: 1fr; } }

/* Stats simples */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--marsala); line-height: 1; display: block; margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: .88rem; color: var(--cinza-txt);
  text-transform: uppercase; letter-spacing: .14em;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ----------------------------------------------------------
   3. CARDS DE SERVIÇO
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--dourado);
  transition: width .5s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(201,168,76,.35); }
.service-card:hover::after { width: 100%; }
.service-card h3 { color: var(--marsala); font-size: clamp(1.15rem, 1.8vw, 1.38rem); margin-bottom: 10px; }
.service-card p { color: var(--cinza-txt); font-size: .95rem; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   4. LISTA DE ALERTAS
   ---------------------------------------------------------- */
.alert-list { display: grid; gap: 18px; }
.alert-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: rgba(56,32,28,.04);
  border: 1px solid var(--cinza-borda);
  border-left: 3px solid var(--dourado);
  border-radius: var(--r);
  transition: background .3s, border-left-color .3s;
}
.alert-item:hover { background: rgba(56,32,28,.07); border-left-color: var(--marsala); }
.alert-dot {
  width: 32px; height: 32px; flex: none; border-radius: 50%;
  background: var(--marsala); color: var(--dourado-200);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1rem;
}
.alert-item h4 { color: var(--marsala); font-size: 1.08rem; margin-bottom: 4px; }
.alert-item p  { color: var(--cinza-txt); font-size: .95rem; line-height: 1.5; }

/* ----------------------------------------------------------
   5. PERFIS DE CLIENTE
   ---------------------------------------------------------- */
.perfis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.perfil-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  padding: 32px 26px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.perfil-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.perfil-ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--off-white); color: var(--marsala);
  display: grid; place-items: center; margin: 0 auto 20px;
  border: 1px solid rgba(56,32,28,.08);
  transition: background .4s, color .4s;
}
.perfil-card:hover .perfil-ic { background: var(--marsala); color: var(--dourado-200); }
.perfil-ic svg { width: 28px; height: 28px; }
.perfil-card h3 { color: var(--marsala); font-size: 1.15rem; margin-bottom: 10px; }
.perfil-card p  { color: var(--cinza-txt); font-size: .92rem; }

@media (max-width: 900px) { .perfis-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .perfis-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   6. ESFERAS (Federal/Estadual/Municipal)
   ---------------------------------------------------------- */
.esferas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.esfera-card {
  background: var(--marsala);
  border-radius: var(--r);
  padding: 36px 28px;
  color: #fff;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.esfera-card::before {
  content: ""; position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
}
.esfera-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.esfera-badge {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dourado-200); margin-bottom: 16px; display: block;
}
.esfera-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.esfera-card p  { color: rgba(255,255,255,.75); font-size: .95rem; }
.esfera-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.esfera-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: rgba(255,255,255,.8);
}
.esfera-card ul li::before { content: ""; width: 5px; height: 5px; background: var(--dourado); border-radius: 50%; flex-shrink: 0; }

@media (max-width: 768px) { .esferas-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   7. FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--cinza-borda); }
.faq-item { border-bottom: 1px solid var(--cinza-borda); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; padding: 26px 4px;
  font-family: var(--serif); font-size: clamp(1.15rem,1.8vw,1.4rem);
  color: var(--marsala); transition: color .3s;
}
.faq-q:hover { color: var(--dourado-600); }
.faq-icn {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.5);
  display: grid; place-items: center;
  position: relative; transition: .4s var(--ease);
}
.faq-icn::before, .faq-icn::after {
  content: ""; position: absolute; background: var(--dourado-600);
  transition: .4s var(--ease);
}
.faq-icn::before { width: 12px; height: 1.5px; }
.faq-icn::after  { width: 1.5px; height: 12px; }
.faq-item.open .faq-icn { background: var(--marsala); border-color: var(--marsala); transform: rotate(135deg); }
.faq-item.open .faq-icn::before,
.faq-item.open .faq-icn::after { background: var(--dourado-200); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; color: var(--cinza-txt); max-width: 62ch; line-height: 1.7; }

/* ----------------------------------------------------------
   8. CARROSSEL DE DEPOIMENTOS
   ---------------------------------------------------------- */
.testi { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  /* overflow: hidden NÃO deve estar aqui — o clipping precisa ser do pai (.testi) */
  transition: transform .7s var(--ease);
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  width: 100%;
  /* sem margin lateral — gap quebra o cálculo do translateX */
  background: #fff; border-radius: var(--r);
  padding: clamp(40px,5vw,64px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cinza-borda);
  display: grid; gap: 26px;
}
.testi-stars { display: flex; gap: 4px; }
.testi-stars span { color: var(--dourado); font-size: 1.1rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4; color: var(--preto-suave);
}
.testi-quote .qm {
  font-size: 4rem; color: var(--dourado); opacity: .8; line-height: 0;
  vertical-align: -.35em; margin-right: .12em;
}
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--cinza-borda);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--marsala); font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
}
.testi-name { font-weight: 500; font-size: 1.02rem; color: var(--preto-suave); }
.testi-role { font-size: .85rem; color: var(--cinza-txt); }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 34px; }
/* Dot expande quando ativo */
.testi-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: rgba(56,32,28,.2);
  cursor: pointer; transition: .3s; padding: 0;
}
.testi-dot.active { background: var(--marsala); width: 26px; border-radius: 999px; }

/* ----------------------------------------------------------
   9. CARDS DE CONTATO — deslizam para direita
   ---------------------------------------------------------- */
.contact-channels { display: grid; gap: 18px; }
.cc {
  display: flex; align-items: center; gap: 18px; padding: 20px 22px;
  border: 1px solid rgba(201,168,76,.3); border-radius: var(--r);
  background: rgba(255,255,255,.5); transition: .4s var(--ease);
}
.cc:hover { transform: translateX(6px); border-color: var(--dourado); background: rgba(255,255,255,.8); }
.cc .cc-ic {
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  background: var(--marsala); color: var(--dourado-200);
  display: grid; place-items: center;
}
.cc .cc-ic svg { width: 22px; height: 22px; }
.cc small { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dourado-600); }
.cc b { font-family: var(--sans); font-weight: 500; font-size: 1.05rem; color: var(--preto-suave); }

/* ----------------------------------------------------------
   10. FORMULÁRIO DE CONTATO
   ---------------------------------------------------------- */
.contact-form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cinza-txt);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--cinza-borda);
  border-radius: 10px;
  background: #fff; color: var(--preto-suave);
  transition: border-color .3s, box-shadow .3s;
  font-size: .98rem;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Honeypot — visualmente oculto */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
/* Feedback */
.form-ok {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 10px;
  color: var(--dourado-200);
  font-size: .95rem;
  font-weight: 500;
}
.form-erro {
  padding: 14px 18px;
  background: rgba(220,50,50,.12);
  border: 1px solid rgba(220,50,50,.3);
  border-radius: 10px;
  color: #ff9494;
  font-size: .95rem;
}

/* Versão para fundo claro (página contato.html) */
.contact-page .form-ok {
  background: rgba(56,32,28,.08);
  border-color: var(--dourado);
  color: var(--marsala);
}
.contact-page .form-erro {
  background: rgba(220,50,50,.06);
  border-color: rgba(220,50,50,.4);
  color: #c0392b;
}

/* Grid contato 2 col */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) {
  .contato-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   11. VALORES DA ADVOGADA
   ---------------------------------------------------------- */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.valor-card {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 32px 26px;
  border-top: 3px solid var(--dourado);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.valor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.valor-card h3 { color: var(--marsala); font-size: 1.25rem; margin-bottom: 10px; }
.valor-card p  { color: var(--cinza-txt); font-size: .93rem; }

@media (max-width: 820px) { .valores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .valores-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   12. SEÇÃO SOBRE — grid 2 colunas
   ---------------------------------------------------------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}
.sobre-foto {
  border-radius: var(--r);
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}
.sobre-foto img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top center;
  border-radius: var(--r);
}
.sobre-foto-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--cinza-txt); font-style: italic; font-size: .95rem;
  border: 2px dashed var(--cinza-borda);
  text-align: center; padding: 20px;
}
.sobre-txt h2 { color: var(--marsala); margin-bottom: 24px; }
.sobre-txt p  { color: var(--cinza-txt); margin-bottom: 18px; }

@media (max-width: 820px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-foto { position: static; }
}

/* Caixa de credenciais */
.cred-box {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 32px;
  border-left: 4px solid var(--dourado);
  margin-top: 32px;
}
.cred-box h4 { color: var(--marsala); margin-bottom: 16px; }
.cred-box ul { display: flex; flex-direction: column; gap: 10px; }
.cred-box ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--cinza-txt);
}
.cred-box ul li::before { content: "›"; color: var(--dourado); font-size: 1.1rem; flex-shrink: 0; margin-top: -1px; }

/* ----------------------------------------------------------
   13. BLOG CARDS
   ---------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--off-white); overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-meta {
  display: flex; gap: 12px; align-items: center;
  padding: 18px 22px 0;
  font-size: .8rem; color: var(--cinza-txt);
}
.blog-cat {
  background: var(--off-white); color: var(--marsala);
  padding: 3px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
}
.blog-body { padding: 14px 22px 24px; }
.blog-body h3 { color: var(--marsala); font-size: 1.18rem; margin-bottom: 8px; line-height: 1.3; }
.blog-body p  { color: var(--cinza-txt); font-size: .93rem; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   14. SEÇÃO DE DIFERENCIAIS (marsala bg)
   ---------------------------------------------------------- */
.diffs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r);
  padding: 34px 28px;
  transition: background .3s, border-color .3s, transform .4s var(--ease);
}
.diff-card:hover { background: rgba(255,255,255,.10); border-color: rgba(201,168,76,.4); transform: translateY(-4px); }
.diff-card-num {
  font-family: var(--serif); font-size: 2.6rem;
  color: var(--dourado); line-height: 1; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.diff-card-num::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--dourado);
  margin: 8px 0 0;
  background: linear-gradient(to right, var(--dourado), transparent);
  opacity: .9;
}
.diff-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.diff-card p  { color: rgba(255,255,255,.7); font-size: .93rem; }

@media (max-width: 768px) { .diffs-cards-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   15. SEÇÃO ESPECIALIZAÇÃO / DESTAQUE MARSALA
   ---------------------------------------------------------- */
.destaque-marsala {
  background: var(--marsala);
  border-radius: var(--r);
  padding: clamp(40px, 6vw, 70px) clamp(30px, 5vw, 60px);
  color: #fff;
  position: relative; overflow: hidden;
}
.destaque-marsala::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.18);
}
.destaque-marsala h2 { color: #fff; margin-bottom: 16px; }
.destaque-marsala p  { color: rgba(255,255,255,.8); max-width: 52ch; margin-bottom: 28px; }

/* ----------------------------------------------------------
   16. CONTACT FINAL — grid 2 colunas no fundo marsala
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form-col .h2,
.contact-info-col .h2 { color: #fff; margin-top: 16px; }
.contact-form-col .lead { color: rgba(255,255,255,.8); margin-top: 12px; }

/* Inputs com fundo escuro no contexto marsala */
.contact-final .field label { color: rgba(255,255,255,.75); }
.contact-final .field input,
.contact-final .field textarea,
.contact-final .field select {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
  color: #fff;
}
.contact-final .field select option { background: var(--marsala); color: #fff; }
.contact-final .field input::placeholder,
.contact-final .field textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-final .field input:focus,
.contact-final .field textarea:focus,
.contact-final .field select:focus {
  border-color: var(--dourado);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2);
  outline: none;
}
.contact-final .form-note { color: rgba(255,255,255,.5); }

/* cc cards no fundo marsala */
.contact-final .cc {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,168,76,.25);
  color: #fff;
  text-decoration: none;
}
.contact-final .cc:hover {
  border-color: var(--dourado);
  background: rgba(255,255,255,.10);
  transform: translateX(6px);
}
.contact-final .cc .cc-ic {
  background: var(--dourado);
  color: var(--marsala);
}
.contact-final .cc small { color: var(--dourado-200); }
.contact-final .cc b { color: #fff; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Como Podemos Ajudar ──────────────────────────────────────────────── */
.how-section { color: #fff; }

.how-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Coluna esquerda */
.how-title { color: #fff; line-height: 1.15; }
.how-title em { color: var(--dourado-200); font-style: italic; }
.how-desc {
  color: rgba(255,255,255,.78);
  margin-top: 20px;
  line-height: 1.8;
}

/* Label acima do carrossel */
.how-steps-label {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
  display: block;
}

/* Carrossel */
.how-carousel-wrap { position: relative; overflow: hidden; }

.how-track {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  /* Mostra 2 cards completos + peek do 3º */
  width: 100%;
}

.how-card {
  flex: 0 0 calc(50% - 8px);   /* 2 visíveis */
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-top: 2px solid var(--dourado);
  border-radius: var(--r);
  padding: 28px 24px;
  min-height: 200px;
  transition: background .3s, border-color .3s;
}
.how-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(201,168,76,.5);
}

.how-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--dourado);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.how-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-weight: 600;
}

.how-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.how-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  border: 1.5px solid var(--dourado);
  border-radius: 2px;
  background: rgba(201,168,76,.15);
}

/* Botões nav */
.how-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.how-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.4);
  background: rgba(255,255,255,.06);
  color: var(--dourado);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.how-btn:hover {
  background: rgba(201,168,76,.2);
  border-color: var(--dourado);
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-card { flex: 0 0 80%; }
}
@media (max-width: 480px) {
  .how-card { flex: 0 0 90%; }
}
