/* =============================================================
   ROMANZINI & PINTO ADVOGADOS
   style.css — Versão COMPLETA e FINAL
   Mega Ads © 2026

   MAPA DE CLASSES (extraído do index.html):
   Navbar:     nav-logo, nav-logo-emblem, nav-logo-text, nav-links, nav-cta, nav-burger
   Mobile:     #mobile-nav, .mobile-link, #mobile-close
   Hero:       hero-inner, hero-content, hero-tag, hero-title, hero-desc, hero-actions, hero-meta, hero-meta-item
   Ticker:     ticker, ticker-track, ticker-group, ticker-item, ticker-dot
   Serviços:   services-header, services-header-left, services-grid, service-card, service-num, service-icon, service-title, service-desc, services-cta
   Sobre:      about-grid, about-img-wrap, about-img-frame, about-img-placeholder, about-badge, about-content, about-oab, about-text, about-states, about-state, about-state--muted
   Diferenciais: diff-layout, diff-sticky, diff-list, diff-item, diff-num, diff-body, diff-title, diff-desc
   Avaliações: reviews-grid, review-card, review-stars, review-text, review-author
   FAQ:        faq-layout, faq-header, faq-list, faq-item, faq-trigger, faq-icon, faq-content
   CTA:        cta-inner, cta-title, cta-sub, cta-actions, btn-cta-primary
   Footer:     footer-main, footer-logo-text, footer-logo-sub, footer-desc, footer-back-top, footer-col-title, footer-contact-item, footer-contact-link, footer-map, footer-map-label, footer-bottom, footer-copy, footer-agency
   WhatsApp:   #float-wa, #wa-balloon, #wa-close, #wa-btn, .wa-pulse
   Botões:     btn, btn-primary, btn-outline, btn-dark, btn-ghost, btn-whatsapp
   Seções:     section, section-dark, section-light, section-muted, section-charcoal, section-tag, section-tag-dark, section-title
   Anim:       reveal, reveal-delay-1/2/3/4, visible
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');


/* =============================================================
   1. RESET & VARIÁVEIS
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --black-soft: #0F0F0F;
  --gray-900: #111111;
  --gray-800: #1C1C1C;
  --gray-700: #2A2A2A;
  --gray-600: #3D3D3D;
  --gray-500: #5A5A5A;
  --gray-400: #7B7B7B;
  --gray-300: #A0A0A0;
  --gray-200: #C8C8C8;
  --gray-100: #E8E8E8;
  --gray-50: #F5F5F5;
  --white: #FFFFFF;
  --primary: #214D33; /* Verde Petróleo */
  --primary-light: #2A6342;
  --primary-dark: #183825;

  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 76px;
  --max-w: 1200px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}


/* =============================================================
   2. LAYOUT
   ============================================================= */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}


/* =============================================================
   3. SEÇÕES
   ============================================================= */
.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--gray-800);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
}

.section-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.section-tag-dark {
  color: var(--gray-600);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.body-md {
  font-size: 0.9375rem;
  line-height: 1.70;
}


/* =============================================================
   4. BOTÕES
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  padding: .85rem 2rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  border-radius: 3px;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gray-100);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .6);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.btn-dark:hover {
  border-color: var(--gray-400);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  font-size: .65rem;
}

.btn-ghost:hover {
  border-color: var(--gray-800);
}

.btn-whatsapp {
  background: #32744e;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(33, 77, 51, .2);
}

.btn-whatsapp:hover {
  background: #3b915f;
  box-shadow: 0 6px 20px rgba(33, 77, 51, .35);
  transform: translateY(-1px);
}


/* =============================================================
   5. NAVBAR
   ============================================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

#navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo-emblem {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .625rem;
  letter-spacing: .12em;
  color: var(--gray-200);
}

.nav-logo-img {
  width: 150px;
  height: auto;
  display: block;
  transition: transform .3s var(--ease);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 500;
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* CTA no nav */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  background: #214D33;
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 700 !important;
  transition: background .25s !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #173825 !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .98);
  z-index: 2000; /* Garante que fique acima de tudo */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  backdrop-filter: blur(10px); /* Toque de luxo extra */
}

#mobile-nav.open {
  display: flex;
}

#mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--white);
  letter-spacing: .05em;
  transition: color .2s;
}

#mobile-nav a:hover {
  color: var(--gray-400);
}

#mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px; /* Área de clique maior */
  height: 60px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =============================================================
   6. HERO
   ============================================================= */
#home {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background-color: var(--black);
  background-image: url("../images/bckg01.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* noise texture */
#home::before {
  display: none;
}

/* radial glow */
#home::after {
  display: none;
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-block: 6rem 3rem;
  width: 100%;
}

.hero-content {
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: .4rem .9rem;
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-title br {
    display: none;
  }
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray-400);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-desc {
  font-size: clamp(.9375rem, 1.3vw, 1.125rem);
  color: var(--gray-200);
  max-width: 48ch;
  line-height: 1.8;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-bottom: 5rem;
}

.hero-meta {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  justify-content: flex-start;
  width: 100%;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.01em;
}

.hero-meta-item span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-500);
}


/* =============================================================
   7. TICKER / MARQUEE
   ============================================================= */
.ticker {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  padding: .9rem 0;
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 600;
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gray-600);
  border-radius: 50%;
  flex-shrink: 0;
}

.ticker-group {
  display: inline-flex;
  gap: 3.5rem;
  flex-shrink: 0;
  align-items: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =============================================================
   8. SERVIÇOS
   ============================================================= */
#servicos {
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 0;
}

.services-header-left {
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: none;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
  cursor: default;
  border: none;
  margin: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--gray-50);
}

.service-num {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--gray-300);
  margin-bottom: 1.75rem;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.service-desc {
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}


/* =============================================================
   9. SOBRE
   ============================================================= */
#sobre {
  background: var(--gray-900);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-800);
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-600);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.about-img-stack {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
    max-width: 100%;
    padding: 0;
  }

  .about-photo {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5;
    transform: none !important;
  }

  .about-badge {
    display: none;
  }
}

.about-photo {
  position: absolute;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: var(--gray-800);
  transition: all .5s var(--ease);
}

.photo-main {
  width: 62%;
  z-index: 1;
  aspect-ratio: 4/5;
  top: 0;
  left: 0;
}

.photo-sub {
  width: 62%;
  bottom: 0;
  right: 0;
  z-index: 2;
  aspect-ratio: 4/5;
}

.target-item:hover .target-icon-wrap {
  background: var(--black);
  color: var(--white) !important;
}

.about-badge {
  position: absolute;
  background: var(--white);
  color: var(--black);
  padding: 1.25rem 1.75rem;
  z-index: 3;
  border-radius: 3px;
  text-align: center;
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-badge strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-bottom: .2rem;
}

/* conteúdo */
.about-content {
  color: var(--white);
}

.about-oab {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-100);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: .75rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--gray-100);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--white);
  font-weight: 500;
}

/* estados de atuação (quadradinhos) */
.about-states {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}

.about-state {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .3rem .7rem;
  color: var(--gray-100);
  border-radius: 2px;
}

.about-state--muted {
  color: var(--gray-400);
  border-color: rgba(255, 255, 255, .06);
}

.target-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .target-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .target-intro {
    text-align: center;
  }
  
  .target-intro .btn {
    margin-inline: auto;
  }
}

.target-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--gray-100);
  transition: transform .3s var(--ease);
}

.target-item:last-child {
  border-bottom: none;
}

.target-item:hover {
  transform: translateX(10px);
}

.target-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: all .3s var(--ease);
}

.target-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.target-item:hover .target-icon-wrap {
  background: var(--black);
  color: var(--white) !important;
}

.target-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.target-title-small {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .25rem;
  line-height: 1.2;
}

.target-text-small {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .target-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0; /* Remove o espaço entre os cards */
  }
}

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


/* =============================================================
   10. DIFERENCIAIS
   ============================================================= */
#diferenciais {
  background: var(--white);
}

.faq-layout {
  max-width: 800px;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header .body-md {
  margin-inline: auto;
}

.faq-list {
  width: 100%;
}

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .diff-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.diff-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

@media (max-width: 992px) {
  .diff-sticky {
    position: static;
    text-align: center;
  }
  
  .diff-sticky .btn {
    margin-inline: auto;
  }
}

.diff-list {
  display: flex;
  flex-direction: column;
}

.diff-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding-block: 3rem;
  border-bottom: 1px solid var(--gray-100);
  transition: border-color .4s var(--ease);
  position: relative;
}

.diff-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.diff-num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .1em;
  padding-top: .4rem;
}

.diff-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.diff-desc {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 600px;
}

.diff-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 3rem 2rem; /* Adicionado padding horizontal para o bckg ficar bonito */
  border-bottom: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
  position: relative;
  margin-inline: -2rem; /* Compensa o padding para manter o alinhamento do texto */
}

.diff-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.diff-num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .1em;
  padding-top: .4rem;
}

.diff-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.diff-desc {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 600px;
}

.diff-item:hover {
  background: #fafafa;
}

.diff-item:hover .diff-num {
  color: var(--black);
}

@media (max-width: 768px) {
  .diff-item {
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 2rem 1rem;
    margin-inline: -1rem;
  }
}


/* =============================================================
   11. AVALIAÇÕES / REVIEWS
   ============================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--gray-50);
}

.review-stars {
  color: #FFB800;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  border-top: 1px solid var(--gray-50);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 400;
}

.review-author span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}


/* =============================================================
   12. FAQ
   ============================================================= */
.faq-layout {
  max-width: 800px;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Texto na esquerda, ícone na direita */
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger .faq-icon {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--gray-300);
  transition: transform 0.4s var(--ease);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  text-align: left; /* Resposta na esquerda */
}

.faq-content p {
  padding-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-500);
}

/* FAQ — estado aberto */
.faq-item.active .faq-trigger {
  color: var(--black);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--black);
}

.faq-item.active .faq-content {
  max-height: 300px;
}


/* =============================================================
   13. CTA WHATSAPP (seção)
   ============================================================= */
#cta-whatsapp {
  background: var(--black);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/backg02.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax sutil */
}

#cta-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  opacity: .3;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.cta-title em {
  font-style: italic;
  color: var(--gray-400);
}

.cta-sub {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-cta-primary {
  font-size: .75rem;
  padding: 1.1rem 2.5rem;
}


/* =============================================================
   14. FOOTER
   ============================================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--gray-400);
}

.footer-main {
  padding-block: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.footer-desc {
  font-size: .8125rem;
  line-height: 1.75;
  color: var(--gray-100);
  margin-top: 1.25rem;
  max-width: 36ch;
}

.footer-back-top {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-size: .75rem;
  margin-top: 2rem;
  color: var(--white) !important;
  opacity: .8;
  transition: opacity .3s;
}

.footer-back-top:hover {
  opacity: 1;
}

.footer-col-title {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gray-100);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--gray-100);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: .2rem;
}

.footer-contact-link {
  color: var(--gray-400);
  transition: color .2s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-map {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  filter: grayscale(1) brightness(.5) contrast(1.2);
  transition: filter .4s;
}

.footer-map:hover {
  filter: grayscale(.6) brightness(.65) contrast(1.1);
}

.footer-map-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-700);
  text-align: center;
  margin-top: .75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.footer-agency {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.footer-agency a {
  font-weight: 700;
  color: var(--gray-500);
  transition: color .25s;
}

.footer-agency a:hover {
  color: var(--white);
}


/* =============================================================
   15. BOTÃO WHATSAPP FLUTUANTE
   ============================================================= */
#float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}

/* balão de mensagem */
#wa-balloon {
  background: var(--white);
  color: var(--gray-800);
  padding: 1rem 1.25rem;
  border-radius: 12px 12px 2px 12px;
  max-width: 220px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
  font-size: .8125rem;
  line-height: 1.55;
  position: relative;
  transform: scale(.85) translateY(8px);
  opacity: 0;
  transform-origin: bottom right;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}

#wa-balloon.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* triângulo */
#wa-balloon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#wa-balloon strong {
  display: block;
  font-size: .75rem;
  margin-bottom: .2rem;
  color: var(--gray-900);
}

/* botão fechar */
#wa-close {
  position: absolute;
  top: .4rem;
  right: .4rem;
  width: 18px;
  height: 18px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--gray-500);
  cursor: pointer;
  border: none;
}

#wa-close:hover {
  background: var(--gray-200);
}

/* botão principal */
#wa-btn {
  width: 58px;
  height: 58px;
  background: #2d6845;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(45, 104, 69, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
}

#wa-btn:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
}

#wa-btn svg {
  width: 28px;
  height: 28px;
}

/* pulso animado */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .25);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/* =============================================================
   16. SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}


/* =============================================================
   17. RESPONSIVIDADE
   ============================================================= */

/* Tablet */
@media (max-width: 900px) {
  .hero-inner {
    padding-block: 4rem 2rem;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-badge {
    bottom: -1rem;
    right: -.5rem;
  }

  .about-img-frame {
    aspect-ratio: 5 / 4;
  }

  .diff-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .diff-sticky {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 4rem;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  #wa-balloon {
    max-width: 180px;
  }
}