/* ==========================================================================
   ESTEVES ADVOCACIA E ASSESSORIA JURÍDICA
   Página de Vendas de Serviços (Landing Page Otimizada)
   
   Cores Oficiais da Marca:
   - Verde Oliva Nobre: #515744 (Primária Oficial)
   - Verde Oliva Claro: #C9D8A8 (Acentos, Detalhes e Sublinhados)
   - Grafite/Preto Executivo: #242424 / #1E221A (Fundo e Textos)
   - Fundo Suave: #F6F7F3 e #FFFFFF
   
   Regra de Cores Estrita:
   - A cor do WhatsApp (#00D105) é utilizada EXCLUSIVAMENTE nos botões de ação do WhatsApp.
   - Cookies, sublinhados, bordas, ícones e demais elementos utilizam rigorosamente as cores da marca (#515744 / #C9D8A8 / #242424).
   ========================================================================== */

:root {
  /* Cores Oficiais da Marca */
  --primary: #515744;
  --primary-dark: #2a2e22;
  --primary-deep: #1e2219;
  --primary-light: #6a715a;
  --primary-gradient: linear-gradient(135deg, #515744 0%, #2f3426 100%);
  --hero-gradient: radial-gradient(circle at top right, #6a715a 0%, #515744 45%, #1e2219 100%);

  --olive-light: #C9D8A8;
  --olive-border: rgba(201, 216, 168, 0.35);

  /* Cor EXCLUSIVA dos Botões de Ação do WhatsApp */
  --btn-whatsapp-green: #00D105;
  --btn-whatsapp-hover: #8AFF8D;
  --btn-whatsapp-glow: 0 4px 16px rgba(0, 209, 5, 0.38);

  /* Tons Neutros e Fundo */
  --bg-body: #ffffff;
  --bg-subtle: #f6f7f3;
  --bg-card: #ffffff;
  --bg-dark: #1e2219;

  --text-main: #242424;
  --text-muted: #555d4c;
  --text-light: #e6e9e0;
  --text-white: #ffffff;

  --border-light: #e4e7dd;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Estrutura */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-normal);
}

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-dark);
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p, a, span, label, input, textarea {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: rgba(81, 87, 68, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 1px solid rgba(81, 87, 68, 0.25);
}

.section-tag.light {
  color: var(--olive-light);
  background: rgba(201, 216, 168, 0.18);
  border-color: var(--olive-border);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   BOTÕES EQUILIBRADOS E ELEGANTE (PROPORÇÃO PERFEITA)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.86rem; /* Tamanho proporcional e harmônico */
  line-height: 1.25;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 11px 22px; /* Dimensões elegantes, sem aspecto inflado */
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

/* O BOTÃO EXCLUSIVO DE WHATSAPP - VERDE OFICIAL (#00D105) */
.btn-sales-cta {
  background-color: var(--btn-whatsapp-green);
  color: #111a0e;
  box-shadow: var(--btn-whatsapp-glow);
  animation: pulse-sales-cta 2.5s infinite;
}

.btn-sales-cta:hover, .btn-sales-cta:focus {
  background-color: var(--btn-whatsapp-hover);
  color: #111a0e;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0, 209, 5, 0.45);
}

.btn-sales-cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Botão Institucional nas cores da Banca (#515744) */
.btn-site-primary {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--olive-border);
}

.btn-site-primary:hover {
  background-color: #3b4031;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 87, 68, 0.25);
}

/* Feixe de luz suave (shimmer) */
.btn-sales-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(30deg);
  pointer-events: none;
  animation: btn-shimmer 3.5s infinite;
}

@keyframes btn-shimmer {
  0% { left: -60%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

@keyframes pulse-sales-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 209, 5, 0.45), 0 3px 12px rgba(0, 209, 5, 0.25);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 209, 5, 0), 0 5px 16px rgba(0, 209, 5, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 209, 5, 0), 0 3px 12px rgba(0, 209, 5, 0.25);
  }
}

/* Botão Secundário */
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(201, 216, 168, 0.5);
  padding: 10px 20px;
}

.btn-secondary:hover {
  background: rgba(201, 216, 168, 0.15);
  border-color: var(--olive-light);
  color: var(--olive-light);
  transform: translateY(-2px);
}

/* Botão Submit do Formulário (#515744 oficial da marca) */
.btn-submit {
  background-color: var(--primary);
  color: #ffffff;
  width: 100%;
  padding: 12px 22px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}

.btn-submit:hover {
  background-color: #3b4031;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(81, 87, 68, 0.28);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(42, 46, 34, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 216, 168, 0.2);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(30, 34, 25, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: #e2e5db;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--olive-light);
}

.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.84rem;
  letter-spacing: 0.4px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--olive-light);
  font-size: 1.85rem;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
}

/* ==========================================================================
   HERO / BANNER PRINCIPAL (IMAGEM DE FUNDO THEMIS + OVERLAY OLIVA OFICIAL)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  background-color: #515744;
  background-image: 
    linear-gradient(135deg, rgba(30, 34, 25, 0.88) 0%, rgba(81, 87, 68, 0.82) 45%, rgba(20, 23, 16, 0.92) 100%),
    url("../images/hero-themis.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(201, 216, 168, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--olive-border);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--olive-light);
  margin-bottom: 1.35rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 3.1rem;
  color: #ffffff;
  margin-bottom: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
}

/* SUBLINHADO EM CONFORMIDADE: COR DA MARCA (#C9D8A8), NUNCA VERDE WHATSAPP */
.hero h1 span.highlight {
  color: var(--olive-light);
  text-decoration: underline;
  text-decoration-color: var(--olive-light);
  text-underline-offset: 6px;
}

.hero p.hero-lead {
  font-size: 1.18rem;
  color: #e4e7de;
  margin-bottom: 2.2rem;
  line-height: 1.65;
  max-width: 760px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #c9d0be;
  line-height: 1.4;
}

/* ==========================================================================
   CALLOUT BANNER (SUBTLE BORDER DA MARCA)
   ========================================================================== */
.sales-banner {
  background-color: var(--primary-dark);
  border-top: 1px solid var(--olive-border);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.6rem 0;
  color: #ffffff;
}

.sales-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.sales-banner-text h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.sales-banner-text p {
  color: #cbd3c2;
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   QUEM SOMOS / INSTITUCIONAL
   ========================================================================== */
.about {
  padding: 6rem 0;
  background-color: var(--bg-body);
}

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

.about-text h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.35rem;
  font-weight: 800;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.highlight-box {
  padding: 1.25rem;
  background: var(--bg-subtle);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.highlight-box h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.highlight-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-card-visual {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  color: var(--text-white);
  border: 1px solid var(--olive-border);
  box-shadow: 0 12px 30px rgba(42, 46, 34, 0.2);
}

.about-card-visual blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  color: var(--olive-light);
}

.about-author h4 {
  color: #ffffff;
  font-size: 1.15rem;
}

.about-author span {
  color: var(--olive-light);
  font-size: 0.88rem;
  display: block;
}

/* ==========================================================================
   ÁREAS DE ATUAÇÃO
   ========================================================================== */
.areas {
  padding: 6rem 0;
  background-color: var(--bg-subtle);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.area-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(81, 87, 68, 0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(81, 87, 68, 0.12);
  border-color: var(--primary);
}

.area-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(81, 87, 68, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: all var(--transition-normal);
}

.area-card:hover .area-icon {
  background: var(--primary);
  color: var(--olive-light); /* Cor da marca! */
}

.area-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.area-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

/* Link interno das áreas: usa as cores da marca (#515744 / #C9D8A8) */
.area-sales-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(81, 87, 68, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(81, 87, 68, 0.18);
  transition: all var(--transition-normal);
  align-self: flex-start;
}

.area-card:hover .area-sales-link {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateX(3px);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.differentials {
  padding: 6rem 0;
  background: var(--primary-gradient);
  color: var(--text-white);
}

.differentials h2 {
  color: #ffffff;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.diff-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--olive-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.diff-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--olive-light); /* Cor da marca! */
}

.diff-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--olive-light);
  margin-bottom: 0.65rem;
  display: block;
}

.diff-item h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.diff-item p {
  color: #d1d8c7;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   LOCALIZAÇÃO (GEO SEO - AVENIDA PAULISTA)
   ========================================================================== */
.location {
  padding: 6rem 0;
  background-color: var(--bg-body);
}

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

.location-info h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.15rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-width: 0;
  max-width: 100%;
}

.loc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(81, 87, 68, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.loc-text {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
}

.loc-text h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.loc-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  overflow-wrap: break-word;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(81, 87, 68, 0.12);
  border: 1px solid var(--border-light);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 6rem 0;
  background-color: var(--bg-subtle);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.6rem;
  text-align: left;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  border: none;
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: bold;
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

/* ==========================================================================
   CONTATO & FORMULÁRIO
   ========================================================================== */
.contact {
  padding: 6rem 0;
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.15rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-meta {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.method-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.method-meta strong {
  font-size: 1rem;
  color: var(--primary);
  overflow-wrap: anywhere;
  word-break: break-all;
  display: block;
  min-width: 0;
  max-width: 100%;
}

.method-meta a {
  display: block;
  color: var(--primary);
  overflow-wrap: anywhere;
  word-break: break-all;
  min-width: 0;
  max-width: 100%;
}

.method-meta p {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.contact-form-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 25px rgba(81, 87, 68, 0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-main);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-consent {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #cbd2c3;
  padding-top: 4.5rem;
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--olive-light); /* Cor da marca! */
}

.footer-links a:hover {
  color: var(--olive-light); /* Cor da marca! */
  padding-left: 4px;
}

.footer-legal-notice {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #9aa392;
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.35rem 0;
  background: #141710;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP (PROPORCIONADO E DISCRETO)
   ========================================================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--btn-whatsapp-green);
  color: #111a0e;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 209, 5, 0.45);
  animation: pulse-wa-floating 2.2s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.08);
  background-color: var(--btn-whatsapp-hover);
}

.whatsapp-floating svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-wa-floating {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 209, 5, 0.55), 0 4px 16px rgba(0, 209, 5, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 209, 5, 0), 0 6px 20px rgba(0, 209, 5, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 209, 5, 0), 0 4px 16px rgba(0, 209, 5, 0.35);
  }
}

/* ==========================================================================
   MODAL / BANNER DE COOKIES LGPD
   CORES ESTRITAS DA BANCA: #515744 e #C9D8A8 (SEM VERDE WHATSAPP)
   ========================================================================== */
.lgpd-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 880px;
  margin: 0 auto;
  background: rgba(30, 34, 25, 0.98);
  backdrop-filter: blur(10px);
  color: #e2e5db;
  border: 1px solid var(--olive-border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.75rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.lgpd-content h4 {
  color: var(--olive-light);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.lgpd-content p {
  font-size: 0.85rem;
  color: #cbd3c2;
  line-height: 1.5;
}

.lgpd-content a {
  color: var(--olive-light);
  text-decoration: underline;
  text-decoration-color: var(--olive-light);
}

.lgpd-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* BOTÃO DE COOKIES: USA A COR OFICIAL DA MARCA (#515744) */
.btn-lgpd-accept {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--olive-light);
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-lgpd-accept:hover {
  background-color: var(--olive-light);
  color: var(--primary-deep);
}

.btn-lgpd-settings {
  background: transparent;
  color: #cbd3c2;
  border: 1px solid rgba(201, 216, 168, 0.35);
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-lgpd-settings:hover {
  background: rgba(201, 216, 168, 0.15);
  color: var(--olive-light);
  border-color: var(--olive-light);
}

/* ==========================================================================
   PÁGINAS LEGAIS
   ========================================================================== */
.legal-page-header {
  padding-top: 140px;
  padding-bottom: 50px;
  background: var(--primary-gradient);
  color: #ffffff;
  text-align: center;
}

.legal-page-header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal-content-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
}

.legal-card {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(81, 87, 68, 0.06);
}

.legal-card h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

/* ==========================================================================
   RESPONSIVIDADE AVANÇADA (MOBILE & DESKTOP HARMONIZADOS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .about-grid, .location-grid, .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
  }
}

@media (max-width: 768px) {
  /* Container e Estrutura */
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  /* Header & Menu Mobile */
  .nav-links, .nav-actions .btn-header-cta { 
    display: none; 
  }
  .mobile-menu-toggle { 
    display: block; 
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 2px solid var(--olive-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  /* Hero */
  .hero { 
    padding-top: 115px; 
    padding-bottom: 55px;
    text-align: center; 
    min-height: auto;
  }
  .hero h1 { 
    font-size: clamp(1.85rem, 5.5vw, 2.25rem); 
    line-height: 1.25;
  }
  .hero p.hero-lead {
    font-size: 1.02rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas { 
    justify-content: center; 
    flex-direction: column;
    gap: 0.85rem;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 360px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: left;
  }

  /* Botões em Telas Móveis: quebra de linha elegante sem estourar tela */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  /* Sobre Nós */
  .about-highlights { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  }
  .about-card-visual {
    padding: 1.85rem;
  }
  .about-card-visual blockquote {
    font-size: 1.08rem;
  }

  /* Banner de Vendas / Chamada */
  .sales-banner-inner { 
    flex-direction: column; 
    text-align: center; 
    gap: 1.15rem;
  }
  .sales-banner-inner .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Áreas de Atuação */
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Diferenciais */
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .diff-item {
    padding: 1.5rem;
  }

  /* Localização */
  .map-wrapper {
    height: 300px;
  }

  /* Contato & Métodos */
  .contact-info h2 {
    font-size: 1.95rem;
  }
  .contact-info p {
    font-size: 0.98rem;
  }
  .method-card {
    padding: 1rem;
    gap: 0.95rem;
  }
  .method-icon {
    width: 40px;
    height: 40px;
  }
  .method-icon svg {
    width: 20px;
    height: 20px;
  }
  .method-meta strong,
  .method-meta a {
    font-size: 0.92rem;
  }
  .btn-sales-cta {
    width: 100%;
    justify-content: center;
  }

  /* Card de Formulário */
  .contact-form-card {
    padding: 1.6rem 1.25rem;
  }

  /* LGPD Banner: cores estritas da marca, layout adaptado */
  .lgpd-banner { 
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 1.15rem 1.15rem;
    flex-direction: column; 
    align-items: stretch; 
    gap: 1rem; 
  }
  .lgpd-buttons {
    width: 100%;
    display: flex;
    gap: 0.65rem;
  }
  .btn-lgpd-accept,
  .btn-lgpd-settings {
    flex: 1;
    text-align: center;
    padding: 0.7rem 0.6rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Footer */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }

  /* Páginas Legais */
  .legal-card {
    padding: 1.75rem 1.25rem;
  }
  .legal-page-header h1 {
    font-size: 1.95rem;
  }
}

/* Telas Pequenas e Muito Estreitas (<= 420px, ex: iPhone SE, Samsung Galaxy A/S) */
@media (max-width: 420px) {
  .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
  }
  .method-card {
    padding: 0.9rem;
    gap: 0.8rem;
  }
  .method-meta strong,
  .method-meta a {
    font-size: 0.85rem;
  }
  .lgpd-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-lgpd-accept,
  .btn-lgpd-settings {
    width: 100%;
  }
  .whatsapp-floating {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-floating svg {
    width: 28px;
    height: 28px;
  }
}
