/* =====================================================================
   ASSESCO ASSESSORIA CONTÁBIL — Estilos do site
   Paleta: Verde-petróleo + Ouro (marca) sobre creme/branco
   Sem dependência de Bootstrap. Mobile-first, acessível.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Tokens                                                          */
/* ------------------------------------------------------------------ */
:root {
  /* Verdes */
  --green-900: #07201a;
  --green-800: #0c3a30;   /* base escura principal */
  --green-700: #114637;
  --green-600: #1b5a49;   /* cards sobre fundo escuro */
  --green-500: #2c7a64;

  /* Ouro da marca */
  --gold:      #c9a227;
  --gold-2:    #e4c35a;
  --gold-soft: #f3e7c4;

  /* Neutros */
  --cream:  #fbf7ec;
  --mint:   #eaf3ee;
  --paper:  #ffffff;
  --ink:    #13201b;
  --muted:  #586b62;
  --line:   rgba(12, 58, 48, .12);
  --line-2: rgba(255, 255, 255, .14);

  /* WhatsApp */
  --wa:      #25d366;
  --wa-dark: #128c7e;

  /* Raios e sombras */
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --r-pill: 999px;
  --sh-1: 0 8px 30px rgba(12, 58, 48, .08);
  --sh-2: 0 22px 60px rgba(7, 32, 26, .14);
  --sh-gold: 0 12px 30px rgba(201, 162, 39, .35);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(18px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ------------------------------------------------------------------ */
/* 2. Reset / base                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--green-900);
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.bg-mint  { background: var(--mint); }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--green-800); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--gold); color: var(--green-900); font-weight: 700;
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------------ */
/* 3. Tipografia de seção                                             */
/* ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.bg-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-2); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: .35em;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-dark .section-head p { color: rgba(255, 255, 255, .8); }
.gold-word { color: var(--gold); }
.bg-dark .gold-word { color: var(--gold-2); }

/* ------------------------------------------------------------------ */
/* 4. Botões                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  line-height: 1; padding: 16px 28px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 52px;
}
.btn i { font-size: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green-900); box-shadow: var(--sh-gold);
}
.btn-gold:hover { box-shadow: 0 16px 36px rgba(201, 162, 39, .45); }

.btn-dark { background: var(--green-800); color: #fff; }
.btn-dark:hover { background: var(--green-700); }

.btn-outline { background: transparent; border-color: currentColor; color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.bg-dark .btn-outline, .btn-outline.on-dark { color: #fff; }
.bg-dark .btn-outline:hover, .btn-outline.on-dark:hover { background: #fff; color: var(--green-900); border-color: #fff; }

/* Botão WhatsApp "shiny" (padrão Webformas) */
.btn-wa {
  background: linear-gradient(135deg, #2bd36f, var(--wa-dark));
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 140, 126, .35);
}
.btn-wa::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg); animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine { 0% { left: -120%; } 55% { left: 130%; } 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .btn-wa::after { animation: none; } }

.btn-block { width: 100%; }

/* ------------------------------------------------------------------ */
/* 5. Topbar                                                          */
/* ------------------------------------------------------------------ */
.topbar {
  background: var(--green-900); color: rgba(255, 255, 255, .82);
  font-size: .85rem;
}
.topbar .container {
  display: flex; flex-wrap: wrap; gap: 6px 26px;
  align-items: center; justify-content: space-between; padding-block: 9px;
}
.topbar ul { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.topbar li { display: inline-flex; align-items: center; gap: 7px; }
.topbar i { color: var(--gold-2); font-size: 1rem; }
.topbar a:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/* 6. Header / navegação                                              */
/* ------------------------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 900; background: #fff; }
.site-header .nav-inner {
  display: flex; align-items: center; gap: 20px;
  padding-block: 14px; transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(7, 32, 26, .1); }
.site-header.scrolled .nav-inner { padding-block: 9px; }

.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  color: var(--green-900); padding: 10px 14px; border-radius: var(--r-pill);
  position: relative;
}
.main-nav a:hover { color: var(--green-600); background: var(--mint); }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 20px; min-height: 46px; font-size: .95rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; color: var(--green-800);
  align-items: center; justify-content: center; font-size: 1.5rem;
}

/* Mobile drawer */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(7, 32, 26, .55);
  opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 950;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-label-full { display: none; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 340px);
    background: var(--green-800); color: #fff; z-index: 960;
    transform: translateX(100%); transition: transform .32s ease;
    padding: 86px 24px 32px; overflow-y: auto; box-shadow: var(--sh-2);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { color: #fff; padding: 14px 16px; border-radius: var(--r-sm); font-size: 1.05rem; }
  .main-nav a:hover { background: var(--green-600); color: #fff; }
  .main-nav a.active { color: var(--gold-2); }
  .main-nav a.active::after { display: none; }
  .nav-close {
    position: absolute; top: 18px; right: 18px; width: 42px; height: 42px;
    border: 0; background: rgba(255,255,255,.12); color: #fff; border-radius: 10px;
    font-size: 1.4rem; display: inline-flex; align-items: center; justify-content: center;
  }
}
@media (min-width: 992px) { .nav-close { display: none; } }

/* ------------------------------------------------------------------ */
/* 7. Hero (AIDA, banner único)                                       */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(201,162,39,.22), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(43,122,100,.45), transparent 60%),
    var(--green-800);
}
/* Pattern decorativo sobre o fundo verde, com fade à direita (igual Itararé) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/pattern-hero.webp') repeat top left / 288px auto;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 78%);
  mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 78%);
}
.hero .container {
  position: relative; z-index: 2; display: grid; gap: clamp(34px, 5vw, 64px);
  grid-template-columns: 1.05fr .95fr; align-items: center;
  padding-block: clamp(54px, 8vw, 96px);
}
.hero-content { max-width: 620px; }
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 3.4vw, 2.75rem); font-weight: 800;
  margin-bottom: .55em;
}
.hero h1 .gold-word { color: var(--gold-2); }
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.22rem); color: rgba(255,255,255,.86); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 38px;
  padding-top: 26px; border-top: 1px solid var(--line-2);
}
.hero-trust .num {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  color: var(--gold-2); line-height: 1;
}
.hero-trust .lbl { font-size: .85rem; color: rgba(255,255,255,.78); }

/* Imagem do hero */
.hero-media { position: relative; }
.hero-media > img {
  width: 100%; border-radius: var(--r-xl); object-fit: cover;
  aspect-ratio: 4 / 4.3; box-shadow: var(--sh-2);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: #fff; color: var(--green-900); border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: var(--sh-2);
  display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.hero-badge .ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  display: grid; place-items: center; color: var(--green-900); font-size: 1.4rem;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-badge span { font-size: .82rem; color: var(--muted); }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .hero-badge { left: 0; }
}

/* ------------------------------------------------------------------ */
/* 8. Faixa de diferenciais (cards flutuantes)                        */
/* ------------------------------------------------------------------ */
.highlights { margin-top: calc(var(--section-y) * -.5); position: relative; z-index: 5; }
.highlights .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.hl-card {
  position: relative; background: #fff; border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--sh-1); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }

/* Efeito "border beam": luz dourada girando na borda (cor var(--gold-2)) */
@property --beam-angle {
  syntax: "<angle>"; inherits: false; initial-value: 0deg;
}
.hl-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px; pointer-events: none; z-index: 1;
  background: conic-gradient(from var(--beam-angle),
    transparent 0%, transparent 60%,
    var(--gold-2) 80%, #fff7df 88%, var(--gold-2) 92%,
    transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: beam-rotate 5.5s linear infinite;
}
.hl-card:nth-child(2)::after { animation-delay: -1.4s; }
.hl-card:nth-child(3)::after { animation-delay: -2.8s; }
.hl-card:nth-child(4)::after { animation-delay: -4.1s; }
@keyframes beam-rotate { to { --beam-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .hl-card::after { animation: none; } }
.hl-card .ico {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 16px;
  background: var(--mint); color: var(--green-600);
  display: grid; place-items: center; font-size: 1.6rem;
}
.hl-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.hl-card p { color: var(--muted); font-size: .95rem; margin: 0; }

@media (max-width: 991px) { .highlights .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .highlights .grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* 9. Sobre (Quem Somos)                                              */
/* ------------------------------------------------------------------ */
.about .grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.about-media { position: relative; }
.about-media > img { width: 100%; border-radius: var(--r-xl);  object-fit: cover; aspect-ratio: 1/1; }
.about-media .stat-chip {
  position: absolute; right: -14px; top: 28px;
  background: var(--green-800); color: #fff; border-radius: var(--r-lg);
  padding: 18px 22px; text-align: center; box-shadow: var(--sh-2);
}
.about-media .stat-chip .num { font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; color: var(--gold-2); line-height: 1; }
.about-media .stat-chip .lbl { font-size: .8rem; color: rgba(255,255,255,.82); }

.check-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list i {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-soft); color: var(--green-800);
  display: grid; place-items: center; font-size: 1rem; margin-top: 2px;
}
@media (max-width: 820px) { .about .grid { grid-template-columns: 1fr; } .about-media { order: -1; max-width: 480px; } }

/* ------------------------------------------------------------------ */
/* 10. Serviços                                                       */
/* ------------------------------------------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.service-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-1); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.service-card .thumb { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 16px; margin: -52px 0 14px 24px;
  position: relative; z-index: 2;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--green-900);
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: var(--sh-gold);
}
.service-body { padding: 0 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.3rem; margin-bottom: .35em; }
.service-body p { color: var(--muted); font-size: .96rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; color: var(--green-700);
}
.service-link i { transition: transform .2s ease; }
.service-link:hover { color: var(--gold); }
.service-link:hover i { transform: translateX(4px); }
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ------------------------------------------------------------------ */
/* 11. Faixa Imposto de Renda                                         */
/* ------------------------------------------------------------------ */
.ir-band .panel {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  border-radius: var(--r-xl); padding: clamp(30px, 5vw, 56px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center;
  color: #fff; overflow: hidden; position: relative;
}
.ir-band .panel::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,162,39,.35), transparent 70%);
}
.ir-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.ir-band p { color: rgba(255,255,255,.86); }
.ir-pill {
  display: inline-block; background: var(--gold); color: var(--green-900);
  font-family: var(--font-display); font-weight: 700; padding: 6px 16px;
  border-radius: var(--r-pill); margin-bottom: 14px; font-size: .9rem;
}
.ir-band .media { text-align: center; position: relative; z-index: 2; }
.ir-band .media img { max-height: 280px; width: auto; margin-inline: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }
@media (max-width: 760px) { .ir-band .panel { grid-template-columns: 1fr; text-align: center; } .ir-band .media { order: -1; } }

/* ------------------------------------------------------------------ */
/* 12. FAQ                                                            */
/* ------------------------------------------------------------------ */
.faq .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 30px); align-items: start; margin-top: clamp(34px, 5vw, 54px); }
.faq-aside .card {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green-900); border-radius: var(--r-xl); padding: 34px;
  box-shadow: var(--sh-1);
}
.faq-aside .card h2 { color: var(--green-900); }
.faq-aside .card p { color: rgba(7,32,26,.78); margin-bottom: 22px; }
.faq-aside .card .btn-wa { color: #fff; }

.accordion-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: 14px; overflow: hidden;
}
.accordion-item + .accordion-item { margin-top: 0; }
.accordion-btn {
  width: 100%; text-align: left; border: 0; background: transparent;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green-900);
  padding: 20px 56px 20px 22px; position: relative; line-height: 1.4;
}
.accordion-btn::after {
  content: "+"; font-family: var(--font-display); position: absolute; right: 20px; top: 14px;
  font-size: 1.9rem; line-height: 1; color: var(--gold); transition: transform .3s ease; font-weight: 400;
}
.accordion-item.open .accordion-btn::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-panel { max-height: 460px; }
.accordion-panel-inner { padding: 0 22px 22px; color: var(--muted); }
@media (max-width: 800px) { .faq .grid { grid-template-columns: 1fr; } }
.faq .accordion-item.open .accordion-panel { max-height: 600px; }

/* ------------------------------------------------------------------ */
/* 13. CTA final                                                      */
/* ------------------------------------------------------------------ */
.cta-band { background: var(--green-900); padding-block: clamp(38px, 5vw, 60px); }
.cta-band .panel {
  display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: space-between;
}
.cta-band h2 { flex: 1 1 420px; }
.cta-band .actions { flex: 0 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0; max-width: 720px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------------ */
/* 14. Footer                                                         */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--green-800); color: rgba(255,255,255,.78); padding-top: clamp(54px, 7vw, 88px); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr; gap: 36px;
}
.footer-brand .wordmark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: .02em;
  color: #fff; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand .wordmark .dot { color: var(--gold-2); }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--gold-2); font-size: 1.15rem; margin-top: 2px; flex: none; }
.footer-contact a:hover { color: #fff; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff; font-size: 1.2rem;
}
.social a:hover { background: var(--gold); color: var(--green-900); }

.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line-2);
  padding-block: 24px; display: flex; flex-direction: column; gap: 16px;
  align-items: center; justify-content: center; text-align: center; font-size: .88rem;
}
.footer-bottom a:hover { color: var(--gold-2); }
.footer-bottom .wf img { height: 50px; opacity: .9; }
.footer-bottom.solo { border-top: 0; margin-top: 0; }
.ms-auto { margin-left: auto; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* 15. WhatsApp flutuante + go-top                                    */
/* ------------------------------------------------------------------ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #2bd36f, var(--wa-dark)); color: #fff;
  display: grid; place-items: center; font-size: 1.9rem;
  box-shadow: 0 12px 30px rgba(18,140,126,.45); overflow: hidden;
}
.wa-float::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: shine 3.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); }

.go-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 790;
  width: 46px; height: 46px; border-radius: 12px; border: 0;
  background: var(--green-800); color: #fff; font-size: 1.3rem;
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .3s ease;
}
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { background: var(--gold); color: var(--green-900); }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ------------------------------------------------------------------ */
/* 16. LGPD                                                           */
/* ------------------------------------------------------------------ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; padding: 16px;
  transform: translateY(130%); transition: transform .4s cubic-bezier(.2, .8, .3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1080px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); padding: 22px 28px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong {
  display: block; font-family: var(--font-display); font-size: 16px;
  color: var(--green-900); margin-bottom: 5px;
}
.cookie-banner__text p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.cookie-banner__text a { color: var(--green-700); font-weight: 700; text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cookie-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; font-size: 14.5px; font-family: var(--font-display); font-weight: 700;
  border-radius: var(--r-pill); border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green-900); box-shadow: var(--sh-gold);
}
.cookie-btn--accept:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 162, 39, .45); }
.cookie-btn--ghost { background: transparent; color: var(--muted); border-color: var(--line); }
.cookie-btn--ghost:hover { color: var(--green-900); border-color: var(--green-600); }
@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ------------------------------------------------------------------ */
/* 17. Animações de scroll-reveal                                     */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------------ */
/* 18. Página 404                                                     */
/* ------------------------------------------------------------------ */
.err-wrap {
  min-height: 70vh; display: grid; place-items: center; text-align: center;
  padding-block: var(--section-y);
}
.err-code {
  font-family: var(--font-display); font-weight: 800; line-height: .9;
  font-size: clamp(6rem, 22vw, 12rem);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.err-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: 8px; }
.err-wrap p { color: var(--muted); max-width: 520px; margin-inline: auto; }
.err-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.success-ico { font-size: clamp(4rem, 12vw, 6rem); color: var(--gold); line-height: 1; margin-bottom: 6px; }

/* ================================================================== */
/* 19. Páginas internas                                               */
/* ================================================================== */

/* Hero compacto das páginas internas */
.page-hero {
  position: relative; color: #fff; overflow: hidden; text-align: center;
  padding-block: clamp(45px, 5vw, 48px);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,162,39,.18), transparent 60%),
    var(--green-800);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/pattern-hero.webp') repeat top left / 288px auto; opacity: .4;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-actions { justify-content: center; margin-top: 26px; }
.page-hero .ir-pill { margin-bottom: 14px; }
.values-chips.center { justify-content: center; }
.form-title { font-size: 1.5rem; margin: 0 0 18px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 3vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center;
  margin-bottom: 18px; font-size: .9rem; color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 1rem; opacity: .7; }

/* Prose (políticas, textos longos) */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 1.6em 0 .5em; color: var(--green-800); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 1.02rem; }
.prose ul { margin: 0 0 1rem; padding-left: 4px; }
.prose ul li { display: flex; gap: 10px; margin-bottom: 8px; }
.prose ul li::before { content: "\2022"; color: var(--gold); font-weight: 700; flex: none; }
.prose .updated { font-size: .9rem; color: var(--green-600); font-weight: 600; }

/* Missão / Visão / Valores */
.mvv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mvv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--sh-1);
}
.mvv-card .ico {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--green-900);
  display: grid; place-items: center; font-size: 1.7rem;
}
.mvv-card h3 { font-size: 1.3rem; margin-bottom: .4em; }
.mvv-card p { color: var(--muted); margin: 0; }
.values-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.values-chips span {
  background: var(--mint); color: var(--green-700); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; padding: 10px 18px; border-radius: var(--r-pill);
}
@media (max-width: 720px) { .mvv-grid { grid-template-columns: 1fr; } }

/* Blocos de serviço detalhados */
.svc-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.svc-block + .svc-block { margin-top: clamp(44px, 6vw, 80px); }
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-1); object-fit: cover; aspect-ratio: 4/3; }
.svc-text .ico {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 16px;
  background: var(--mint); color: var(--green-600); display: grid; place-items: center; font-size: 1.7rem;
}
.svc-text h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: .4em; }
.svc-text p { color: var(--muted); }
@media (max-width: 760px) {
  .svc-block { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-media { order: -1; }
  .svc-media { max-width: 460px; }
}

/* Passos numerados (Imposto de Renda) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-1); position: relative;
}
.step-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--green-900);
  display: grid; place-items: center;
}
.step-card h3 { font-size: 1.12rem; margin-bottom: .35em; }
.step-card p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Cards de benefícios / vantagens */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px; box-shadow: var(--sh-1);
}
.benefit-item i {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: var(--gold-soft); color: var(--green-800); display: grid; place-items: center; font-size: 1.3rem;
}
.benefit-item h3 { font-size: 1.05rem; margin: 0 0 .2em; }
.benefit-item p { margin: 0; color: var(--muted); font-size: .94rem; }
@media (max-width: 640px) { .benefit-grid { grid-template-columns: 1fr; } }

/* Contato (formulário + infos) */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info .info-item .ico {
  flex: none; width: 50px; height: 50px; border-radius: 14px;
  background: var(--mint); color: var(--green-600); display: grid; place-items: center; font-size: 1.5rem;
}
.contact-info .info-item h3 { font-size: 1.05rem; margin: 0 0 .2em; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); margin: 0; }
.contact-info .info-item a:hover { color: var(--green-700); }
.contact-map { margin-top: 8px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* Formulário */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--green-900); }
.field label .req { color: #c0392b; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-recaptcha { margin: 4px 0 18px; }
.form-status { border-radius: var(--r-sm); padding: 13px 16px; margin-bottom: 16px; font-size: .95rem; display: none; }
.form-status.show { display: block; }
.form-status.erro { background: #fdecea; color: #a5281b; border: 1px solid #f3c0b9; }
.form-status.info { background: var(--mint); color: var(--green-700); border: 1px solid var(--line); }

.btn .spinner {
  width: 18px; height: 18px; border-radius: 50%; display: none;
  border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn.enviando .spinner { display: inline-block; }
.btn.enviando { opacity: .85; cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
