/* ============================================================
   Go Forth Business Solutions LLC · goforthus.com
   Tema claro imersivo · Paleta e tipografia oficiais
   ============================================================ */

:root {
  --azul-escuro: #0f3d52;
  --azul: #1d5d77;
  --azul-medio: #2a7a9a;
  --ouro: #c9a84c;
  --ouro-claro: #ffdf7f;
  --champagne: #ffeaaa;
  --bronze: #846935;
  --ouro-escuro: #3b2222;
  --creme: #fdf8ee;
  --texto-escuro: #1a1008;
  --azure-mist: #eef5f8;
  --branco: #ffffff;

  --grad-azul: linear-gradient(135deg, #0f3d52 0%, #1d5d77 60%, #2a7a9a 100%);
  --grad-dourado: linear-gradient(135deg, #3b2222 0%, #c9a84c 55%, #ffeaaa 100%);
  --grad-luz: linear-gradient(180deg, #ffffff 0%, #fdf8ee 100%);

  --font-titulo: 'Josefin Sans', 'Trebuchet MS', sans-serif;
  --font-corpo: 'Libre Baskerville', Georgia, serif;

  --pad-x: clamp(1.25rem, 9vw, 10rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-corpo);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--texto-escuro);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad-x);
  background: linear-gradient(180deg, rgba(15, 61, 82, 0.55), rgba(15, 61, 82, 0.0));
  transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}
.site-header.scrolled {
  background: rgba(15, 61, 82, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(15, 61, 82, 0.35);
  padding: 0.6rem var(--pad-x);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand img {
  width: 44px; height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.55);
}
.brand-name {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
  line-height: 1.25;
}
.brand-name span { color: var(--ouro); }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-family: var(--font-titulo);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--creme);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  text-shadow: 0 1px 8px rgba(15, 61, 82, 0.5);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--ouro);
  transition: width 200ms ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.lang-switch {
  font-family: var(--font-titulo);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--creme);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(15, 61, 82, 0.5);
}
.lang-switch a { text-decoration: none; color: var(--creme); opacity: 0.75; }
.lang-switch a:hover { opacity: 1; }
.lang-switch .lang-on { color: var(--ouro); opacity: 1; }
.lang-switch .sep { margin: 0 0.3rem; opacity: 0.5; }

.btn {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.95rem 1.9rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease, transform 200ms ease, box-shadow 300ms ease;
}
.btn-gold {
  background: var(--ouro);
  color: var(--azul-escuro);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover { background: var(--ouro-claro); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201, 168, 76, 0.45); }
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%, 82% { left: -80%; }
  95%, 100% { left: 130%; }
}
.btn-outline {
  background: transparent;
  color: var(--creme);
  border-color: rgba(253, 248, 238, 0.6);
}
.btn-outline:hover { border-color: var(--ouro); color: var(--ouro-claro); }
.btn-outline-dark {
  background: transparent;
  color: var(--azul-escuro);
  border-color: rgba(15, 61, 82, 0.45);
}
.btn-outline-dark:hover { border-color: var(--ouro); color: var(--bronze); }
.header-cta { padding: 0.7rem 1.3rem; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--creme);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Seções ---------- */
section { padding: clamp(3.75rem, 9vw, 8.75rem) var(--pad-x); }

/* Tema claro: as três classes de seção agora são variações de LUZ.
   sec-creme = creme quente · sec-dark = névoa azul clara · sec-dark-grad = branco→creme */
.sec-creme, .sec-dark, .sec-dark-grad {
  color: var(--texto-escuro);
  position: relative;
  overflow: hidden;
}
.sec-creme { background: var(--creme); }
.sec-dark { background: var(--azure-mist); }
.sec-dark-grad { background: var(--grad-luz); }

/* Orbes de luz flutuantes — vida sutil nas seções claras */
.sec-creme::before, .sec-dark::before, .sec-dark-grad::before {
  content: '';
  position: absolute;
  width: 44vw; height: 44vw;
  max-width: 560px; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.13) 0%, transparent 65%);
  top: -12%; right: -10%;
  animation: floatOrb 16s ease-in-out infinite alternate;
  pointer-events: none;
}
.sec-dark::before {
  background: radial-gradient(circle, rgba(42, 122, 154, 0.14) 0%, transparent 65%);
  top: auto; bottom: -14%; right: auto; left: -10%;
}
@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3vw, 4vh, 0) scale(1.12); }
}
section > * { position: relative; z-index: 1; }

.sec-label {
  font-family: var(--font-titulo);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--font-titulo); font-weight: 600; line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5.2vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; color: var(--azul-escuro); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); color: var(--azul-escuro); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 780px;
  opacity: 0.9;
}

.gold-line {
  width: 72px; height: 3px;
  background: var(--ouro);
  border: none;
  margin: 2rem 0 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ---------- Hero fotográfico (Home) ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--grad-azul);
  color: var(--creme);
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(-1.5%, 1%, 0); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 61, 82, 0.35) 0%, rgba(15, 61, 82, 0) 30%, rgba(15, 61, 82, 0.55) 100%),
    linear-gradient(100deg, rgba(15, 61, 82, 0.96) 0%, rgba(15, 61, 82, 0.88) 40%, rgba(29, 93, 119, 0.55) 75%, rgba(42, 122, 154, 0.35) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--grad-dourado);
  z-index: 2;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero .sec-label { color: var(--ouro); }
.hero h1 { margin: 0.75rem 0 1.5rem; color: var(--creme); text-shadow: 0 2px 24px rgba(15, 61, 82, 0.45); }
.hero .lead { margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.25rem; }
.micro-copy {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.85;
}

/* Página interna: hero curto e mais leve */
.hero-page {
  min-height: 52vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: linear-gradient(115deg, #0f3d52 0%, #1d5d77 55%, #2a7a9a 100%);
}
.hero-page::before {
  content: '';
  position: absolute;
  right: -8%; top: -30%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 127, 0.2) 0%, transparent 62%);
  animation: floatOrb 14s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ---------- Banda parallax imersiva ---------- */
.band {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(15, 61, 82, 0.72), rgba(15, 61, 82, 0.72)), url('../img/hero-office.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--creme);
  padding: clamp(4rem, 10vw, 7rem) var(--pad-x);
}
.band blockquote {
  font-family: var(--font-titulo);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  max-width: 860px;
  line-height: 1.4;
}
.band blockquote strong { color: var(--ouro-claro); font-weight: 600; }
.band .band-note {
  font-family: var(--font-titulo);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ouro);
  margin-top: 1.4rem;
}
@media (hover: none), (max-width: 820px) {
  .band { background-attachment: scroll; }
}

/* ---------- Grids e cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); margin-top: 3rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border-radius: 8px;
  padding: 2rem 1.75rem;
  background: var(--branco);
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 2px 14px rgba(15, 61, 82, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ouro);
  box-shadow: 0 16px 34px rgba(15, 61, 82, 0.12);
}
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.98rem; opacity: 0.88; }

.card-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ouro);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  color: var(--bronze);
  background: linear-gradient(135deg, rgba(255, 234, 170, 0.35), rgba(255, 255, 255, 0));
}
.card-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.price {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--bronze);
  margin: 0.4rem 0 0.8rem;
}

/* ---------- Passos (Como Funciona) ---------- */
.step { text-align: left; position: relative; }
.step-num {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--ouro);
  outline: 1px solid rgba(201, 168, 76, 0.4);
  outline-offset: 5px;
  font-family: var(--font-titulo);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bronze);
  background: var(--branco);
  margin-bottom: 1.5rem;
}
.step-badge {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--azul-escuro);
  background: var(--champagne);
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
  margin-top: 1rem;
}

/* ---------- Blocos horizontais (diferenciais) ---------- */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .card-icon { flex-shrink: 0; width: 64px; height: 64px; }
.feature-row .card-icon svg { width: 30px; height: 30px; }
.feature-row h3 { margin-bottom: 0.5rem; }
.feature-row p { max-width: 720px; opacity: 0.88; }

/* ---------- Equipe ---------- */
.team-card { text-align: center; }
.avatar {
  width: 148px; height: 148px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-azul-dourado, linear-gradient(135deg, #0f3d52, #1d5d77 55%, #c9a84c));
  border: 3px solid var(--ouro);
  box-shadow: 0 10px 26px rgba(15, 61, 82, 0.18);
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--creme);
  letter-spacing: 1px;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-role {
  font-family: var(--font-titulo);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0.3rem 0 0.9rem;
}

/* Botão outline em seção clara vira azul automaticamente */
.sec-creme .btn-outline, .sec-dark .btn-outline, .sec-dark-grad .btn-outline {
  color: var(--azul-escuro);
  border-color: rgba(15, 61, 82, 0.45);
}
.sec-creme .btn-outline:hover, .sec-dark .btn-outline:hover, .sec-dark-grad .btn-outline:hover {
  border-color: var(--ouro);
  color: var(--bronze);
}

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--grad-dourado);
  color: var(--azul-escuro);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
  top: -20%; left: -12%;
  animation: floatOrb 15s ease-in-out infinite alternate;
  pointer-events: none;
}
.cta-final .sec-label { color: var(--azul-escuro); opacity: 0.85; }
.cta-final h2 { color: var(--azul-escuro); }
.cta-final .lead { margin: 0 auto 2.5rem; color: #2c1d10; }
.cta-final .hero-ctas { justify-content: center; }
.cta-final .btn-gold { background: var(--azul-escuro); color: var(--champagne); }
.cta-final .btn-gold:hover { background: var(--azul); }
.cta-final .btn-outline { color: var(--azul-escuro); border-color: rgba(15, 61, 82, 0.5); }
.cta-final .btn-outline:hover { border-color: var(--azul-escuro); color: var(--azul-escuro); }

/* ---------- FAQ accordion ---------- */
.faq-cat {
  font-family: var(--font-titulo);
  color: var(--bronze);
  margin: 3rem 0 1rem;
  font-size: 1.3rem;
}
.faq-item {
  background: var(--branco);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 61, 82, 0.05);
}
.faq-item summary {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--ouro);
  transition: transform 200ms ease;
}
.faq-item[open] summary { color: var(--bronze); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.3rem; opacity: 0.88; }

/* ---------- Serviços detalhados ---------- */
.svc-block {
  background: var(--branco);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-left: 4px solid var(--ouro);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  margin-top: 2rem;
  box-shadow: 0 2px 14px rgba(15, 61, 82, 0.06);
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.svc-block:hover { box-shadow: 0 14px 30px rgba(15, 61, 82, 0.1); transform: translateY(-3px); }
.svc-block h3 { color: var(--azul-escuro); }
.svc-tagline { font-style: italic; color: var(--bronze); margin: 0.4rem 0 1.2rem; }
.svc-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem 2rem; margin: 1.2rem 0 1.6rem; }
.svc-meta dt {
  font-family: var(--font-titulo);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.3rem;
}
.svc-meta dd { font-size: 0.97rem; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; margin-top: 3rem; }
.form-card {
  background: var(--branco);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 2px 14px rgba(15, 61, 82, 0.06);
}
.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block;
  font-family: var(--font-titulo);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.45rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: var(--font-corpo);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 61, 82, 0.25);
  border-radius: 4px;
  background: var(--creme);
  color: var(--texto-escuro);
  transition: border-color 200ms ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--ouro);
}
.form-note { font-size: 0.85rem; font-style: italic; opacity: 0.7; margin-top: 1rem; }
.form-success {
  display: none;
  background: var(--champagne);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}
.contact-info h3 { color: var(--azul-escuro); margin: 1.6rem 0 0.4rem; font-size: 1.05rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info a { color: var(--bronze); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--azul-escuro);
  color: var(--creme);
  padding: 4.5rem var(--pad-x) 0;
  border-top: 4px solid var(--ouro);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-grid h4 {
  font-family: var(--font-titulo);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-grid a { color: var(--creme); text-decoration: none; opacity: 0.85; }
.footer-grid a:hover { opacity: 1; color: var(--ouro-claro); }
.footer-brand img { width: 56px; border-radius: 6px; margin-bottom: 1rem; border: 1px solid rgba(201, 168, 76, 0.55); }
.footer-brand p { font-size: 0.93rem; opacity: 0.8; max-width: 300px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(253, 248, 238, 0.15);
  padding: 1.4rem 0;
  font-size: 0.85rem;
  opacity: 0.75;
}
.footer-bottom a { color: var(--creme); text-decoration: none; margin-left: 1.2rem; }
.footer-bottom a:hover { color: var(--ouro-claro); }

/* ---------- Pill badge (hero) ---------- */
.pill-badge {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ouro-claro);
  background: rgba(15, 61, 82, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.6);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.2rem;
}
.hl-gold { color: var(--ouro-claro); }

/* ---------- Erros que custam caro (dor → solução) ---------- */
.pain-card { padding-top: 1.6rem; }
.pain-x, .pain-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
}
.pain-x { color: #8c2f2f; font-family: var(--font-titulo); font-weight: 600; font-size: 1.05rem; line-height: 1.35; margin-bottom: 0.8rem; }
.pain-check { opacity: 0.9; border-top: 1px solid rgba(201, 168, 76, 0.3); padding-top: 0.8rem; }
.pain-x .mark, .pain-check .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-family: var(--font-titulo);
  font-weight: 600;
  margin-top: 0.1rem;
}
.pain-x .mark { background: rgba(140, 47, 47, 0.12); color: #8c2f2f; }
.pain-check .mark { background: rgba(201, 168, 76, 0.2); color: var(--bronze); }

/* ---------- Fundadora (spotlight) ---------- */
.founder-band { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-top: 3rem; }
.founder-photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--ouro);
  box-shadow: 0 18px 40px rgba(15, 61, 82, 0.18);
}
.cred-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.cred-chip {
  font-family: var(--font-titulo);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--azul-escuro);
  background: var(--branco);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.cred-chip::before { content: '✦'; color: var(--ouro); }

/* ---------- O que muda (transformação) ---------- */
.mini-benefit {
  padding: 1.5rem 1.4rem;
  text-align: left;
}
.mini-benefit h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.mini-benefit p { font-size: 0.92rem; }

@media (max-width: 820px) {
  .founder-band { grid-template-columns: 1fr; }
  .founder-photo { margin: 0 auto; }
}

/* ---------- Animações on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-gold::after { animation: none; }
  .hero-bg img { animation: none; }
  .sec-creme::before, .sec-dark::before, .sec-dark-grad::before, .cta-final::before, .hero-page::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Texto legal ---------- */
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 1.5rem; margin: 2.5rem 0 0.75rem; color: var(--azul-escuro); }
.legal-body p, .legal-body li { margin-bottom: 0.9rem; }
.legal-body ul { padding-left: 1.4rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ouro);
  color: var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 16, 8, 0.3);
  transition: transform 200ms ease, background 200ms ease;
}
.wa-float:hover { transform: scale(1.08); background: var(--ouro-claro); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--azul-escuro);
    border-top: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.5rem 0;
    box-shadow: 0 14px 24px rgba(15, 61, 82, 0.35);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 0.85rem var(--pad-x); }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .feature-row { flex-direction: column; gap: 1.2rem; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 0.8rem; }
}
