/* ════════════════════════════════════════
   ALVO GESTÃO CONTÁBIL — ESTILOS GLOBAIS
   Estética: Clean, minimalista, corporativo premium
   Inspiração: acertaassessoria.com.br
   ════════════════════════════════════════ */

/* === VARIÁVEIS CSS === */
:root {
  --cor-primaria: #045e38;
  --cor-destaque: #008349;
  --cor-destaque-hover: #006b3c;
  --fundo-claro: #ffffff;
  --fundo-offwhite: #f9faf8;
  --fundo-escuro: #002a1a;
  --fundo-escuro-alt: #045e38;
  --texto-claro: #3a4a5c;
  --texto-heading: #1a2b3d;
  --texto-escuro: #fcffff;
  --texto-muted: #6d7685;
  --borda-sutil: #e8ede9;
  --fonte-titulo: 'DM Serif Display', 'Georgia', serif;
  --fonte-corpo: 'Poppins', sans-serif;

  /* Tipografia Desktop */
  --h1-size: 3.125rem;    /* 50px */
  --h2-size: 2.5rem;      /* 40px */
  --h3-size: 1.375rem;    /* 22px */
  --texto-size: 1.0625rem; /* 17px */
  --texto-small: 0.9375rem; /* 15px */

  /* Espaçamentos generosos */
  --section-padding: 6rem 0;
  --container-max: 1200px;
  --gap: 2rem;
  --border-radius: 0.625rem;

  /* Transições suaves */
  --transition: 0.35s ease;
}

/* === RESET E BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fonte-corpo);
  font-size: var(--texto-size);
  color: var(--texto-claro);
  background-color: var(--fundo-claro);
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  line-height: 1.2;
  color: var(--texto-heading);
}

h1 {
  font-size: var(--h1-size);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-size);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--h3-size);
  line-height: 1.35;
}

p {
  margin-bottom: 1.125rem;
  color: var(--texto-claro);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* === CONTAINER === */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* === SEÇÕES === */
section {
  padding: var(--section-padding);
}

.section-light {
  background-color: var(--fundo-claro);
  color: var(--texto-claro);
}

.section-offwhite {
  background-color: var(--fundo-offwhite);
  color: var(--texto-claro);
}

.section-dark {
  background-color: var(--fundo-escuro);
  color: var(--texto-escuro);
}

.section-dark-alt {
  background-color: var(--fundo-escuro-alt);
  color: var(--texto-escuro);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark-alt h1,
.section-dark-alt h2,
.section-dark-alt h3,
.section-dark-alt h4 {
  color: var(--texto-escuro);
}

.section-dark p,
.section-dark li,
.section-dark-alt p,
.section-dark-alt li {
  color: rgba(252, 255, 255, 0.82);
}

/* === SEPARADOR DECORATIVO === */
.section-divider {
  display: block;
  width: 100%;
  max-width: 540px;
  height: 1px;
  background: linear-gradient(90deg, var(--cor-destaque), transparent);
  margin: 0 auto 3rem;
  opacity: 0.3;
}

.section-dark .section-divider,
.section-dark-alt .section-divider {
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
}

/* === TAG / RÓTULO DE SEÇÃO === */
.section-tag {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cor-destaque);
  margin-bottom: 1.25rem;
}

.section-dark .section-tag,
.section-dark-alt .section-tag {
  color: rgba(127, 212, 167, 0.85);
}

/* === TÍTULOS COM DESTAQUE === */
.highlight {
  color: var(--cor-destaque);
}

.section-dark .highlight,
.section-dark-alt .highlight {
  color: #7fd4a7;
}

.section-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 1.25rem;
  font-size: var(--texto-size);
  color: var(--texto-muted);
}

.section-dark .section-header p,
.section-dark-alt .section-header p {
  color: rgba(252, 255, 255, 0.72);
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-family: var(--fonte-corpo);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .btn {
    white-space: normal;
    word-break: break-word;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--cor-destaque) 0%, var(--cor-primaria) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 131, 73, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #003d24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 131, 73, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--cor-destaque);
  border: 1.5px solid var(--cor-destaque);
}

.btn-secondary:hover {
  background-color: var(--cor-destaque);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #fff;
  color: var(--cor-primaria);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* === HEADER / NAVEGAÇÃO === */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--fundo-escuro);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background-color: var(--fundo-escuro);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.875rem 0;
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
}

.logo img {
  height: auto;
  width: 150px;
  max-height: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > a,
.nav-dropdown > a {
  color: rgba(252, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  transition: var(--transition);
}

.nav-menu > a:hover,
.nav-dropdown > a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.dropdown-arrow {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--texto-claro);
  font-size: 0.875rem;
  border-radius: 0.375rem;
  font-weight: 400;
}

.dropdown-menu a:hover {
  background-color: var(--fundo-offwhite);
  color: var(--cor-destaque);
}

/* Botão CTA no Nav */
.nav-cta {
  background: linear-gradient(135deg, var(--cor-destaque) 0%, var(--cor-primaria) 100%);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--border-radius);
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #003d24 100%);
  box-shadow: 0 4px 15px rgba(0, 131, 73, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--fundo-escuro);
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(0, 42, 26, 0.95) 0%,
    rgba(4, 94, 56, 0.82) 50%,
    rgba(0, 42, 26, 0.9) 100%
  );
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero h1 {
  color: var(--texto-escuro);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  font-family: var(--fonte-titulo);
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: #7fd4a7;
}

.hero p {
  color: rgba(252, 255, 255, 0.82);
  font-size: 1.0625rem;
  margin-bottom: 0;
  max-width: 540px;
  line-height: 1.75;
}

/* Selos rápidos */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  color: rgba(252, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
}

.hero-badge .badge-icon {
  color: #7fd4a7;
  font-size: 0.625rem;
}

/* === GRID 50/50 === */
.split-section-wrapper {
  position: relative;
  overflow: hidden;
}

.split-section-wrapper .split-bg-icon {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.split-section-wrapper.reverse .split-bg-icon {
  left: auto;
  right: -40px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-text h2 {
  margin-bottom: 1.5rem;
}

.split-text p {
  color: var(--texto-muted);
}

.section-dark .split-text p,
.section-dark-alt .split-text p {
  color: rgba(252, 255, 255, 0.75);
}

.split-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

/* === CARDS DE SERVIÇO === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Card extra centralizado quando sobra ímpar no grid de 3 colunas */
.service-card-centered {
  grid-column: 2;
}

.service-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2.25rem 2rem;
  transition: var(--transition);
  border: 1px solid var(--borda-sutil);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4, 94, 56, 0.08);
  border-color: rgba(0, 131, 73, 0.15);
}

/* Primeiro card com destaque */
.service-card.featured {
  background: linear-gradient(160deg, var(--fundo-escuro) 0%, var(--fundo-escuro-alt) 100%);
  color: var(--texto-escuro);
  border-color: transparent;
}

.service-card.featured:hover {
  box-shadow: 0 20px 50px rgba(0, 42, 26, 0.25);
}

.service-card.featured h3 {
  color: var(--texto-escuro);
}

.service-card.featured p {
  color: rgba(252, 255, 255, 0.75);
}

.service-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(0, 131, 73, 0.08);
  color: var(--cor-destaque);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card.featured .card-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: #7fd4a7;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  font-family: var(--fonte-titulo);
  color: var(--texto-heading);
}

.service-card p {
  font-size: var(--texto-small);
  line-height: 1.7;
  color: var(--texto-muted);
  margin-bottom: 0;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cor-destaque);
  transition: var(--transition);
}

.service-card.featured .card-link {
  color: #7fd4a7;
}

.service-card .card-link:hover {
  gap: 0.875rem;
}

/* === LISTA DE PÚBLICO === */
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.section-light .audience-item {
  background-color: var(--fundo-offwhite);
  border-color: var(--borda-sutil);
}

.audience-item:hover {
  border-color: rgba(0, 131, 73, 0.2);
}

.audience-item .diamond {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background-color: var(--cor-destaque);
  transform: rotate(45deg);
  margin-top: 0.5rem;
  border-radius: 1px;
}

.section-dark .audience-item .diamond,
.section-dark-alt .audience-item .diamond {
  background-color: #7fd4a7;
}

.audience-item p {
  margin: 0;
  font-size: var(--texto-small);
}

/* === DIFERENCIAIS === */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.differential-card {
  padding: 2.25rem;
  border-radius: 1rem;
  background-color: var(--fundo-offwhite);
  border: 1px solid var(--borda-sutil);
  transition: var(--transition);
}

.differential-card:hover {
  border-color: rgba(0, 131, 73, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.section-dark .differential-card,
.section-dark-alt .differential-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .differential-card:hover,
.section-dark-alt .differential-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

.differential-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fonte-titulo);
}

.section-dark .differential-card h3,
.section-dark-alt .differential-card h3 {
  color: var(--texto-escuro);
}

.differential-card .diff-icon {
  color: var(--cor-destaque);
  font-size: 0.625rem;
}

.section-dark .differential-card .diff-icon,
.section-dark-alt .differential-card .diff-icon {
  color: #7fd4a7;
}

.differential-card p {
  font-size: var(--texto-small);
  color: var(--texto-muted);
  margin: 0;
  line-height: 1.7;
}

.section-dark .differential-card p,
.section-dark-alt .differential-card p {
  color: rgba(252, 255, 255, 0.7);
}

/* === DEPOIMENTOS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2.25rem;
  border: 1px solid var(--borda-sutil);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 131, 73, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--cor-destaque);
  opacity: 0.12;
  position: absolute;
  top: 0.75rem;
  left: 1.75rem;
  line-height: 1;
}

.testimonial-card p {
  font-size: var(--texto-small);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--texto-claro);
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-destaque), var(--cor-primaria));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--fonte-corpo);
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-family: var(--fonte-corpo);
  color: var(--texto-heading);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--texto-muted);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--fundo-escuro);
}

/* Imagem de fundo do CTA */
.cta-section .cta-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-section .cta-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section .cta-bg-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 131, 73, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(127, 212, 167, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, rgba(0, 42, 26, 0.92) 0%, rgba(4, 94, 56, 0.85) 50%, rgba(0, 42, 26, 0.93) 100%);
  z-index: 1;
}

.cta-section .cta-bg-icon {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 600px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 2;
}

.cta-section .container {
  position: relative;
  z-index: 3;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
  color: var(--texto-escuro);
}

.cta-section p {
  max-width: 580px;
  margin: 0 auto 0;
  color: rgba(252, 255, 255, 0.78);
  font-size: var(--texto-size);
}

.cta-section .btn-group {
  justify-content: center;
}

/* === FAQ — Layout 2 colunas === */
.faq-section {
  position: relative;
  overflow: hidden;
  background-color: var(--fundo-claro);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.faq-left h2 {
  margin-bottom: 1.25rem;
}

.faq-left .highlight-underline {
  position: relative;
  display: inline;
}

.faq-left .highlight-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(0, 131, 73, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.section-dark .faq-left .highlight-underline::after {
  background-color: rgba(127, 212, 167, 0.2);
}

.faq-left p {
  margin-bottom: 1.75rem;
  color: var(--texto-muted);
  font-size: var(--texto-size);
}

.faq-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0.75rem 0 1.5rem;
}

.section-dark .faq-left p {
  color: rgba(252, 255, 255, 0.7);
}

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

.faq-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  border: 1px solid var(--borda-sutil);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 131, 73, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: rgba(0, 131, 73, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-dark .faq-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .faq-item:hover,
.section-dark .faq-item.active {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.125rem 1.5rem;
  font-family: var(--fonte-corpo);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--texto-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--cor-destaque);
}

.section-dark .faq-question {
  color: var(--texto-escuro);
}

.section-dark .faq-question:hover {
  color: #7fd4a7;
}

.faq-question .faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.4;
  font-family: var(--fonte-corpo);
  font-weight: 300;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(90deg);
  opacity: 0.7;
}

.faq-item.active .faq-question {
  color: var(--cor-destaque);
  font-weight: 600;
}

.section-dark .faq-item.active .faq-question {
  color: #7fd4a7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--texto-small);
  line-height: 1.75;
  color: var(--texto-muted);
}

.section-dark .faq-answer-inner {
  color: rgba(252, 255, 255, 0.65);
}

/* === FOOTER === */
.footer {
  background-color: var(--fundo-escuro);
  color: rgba(252, 255, 255, 0.75);
  padding: 5rem 0 0;
}

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

.footer-col h4 {
  color: var(--texto-escuro);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-family: var(--fonte-titulo);
  font-weight: 400;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(252, 255, 255, 0.6);
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: auto;
  width: 110px;
  max-height: none;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(252, 255, 255, 0.75);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background-color: var(--cor-destaque);
  border-color: var(--cor-destaque);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  color: rgba(252, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #7fd4a7;
  padding-left: 5px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(252, 255, 255, 0.65);
}

.footer-contact-info .icon {
  color: #7fd4a7;
  margin-top: 0.15rem;
}

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

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(252, 255, 255, 0.45);
  margin: 0;
}

.footer-bottom a {
  color: #7fd4a7;
}

.footer-bottom a:hover {
  color: #fff;
}

/* === HIGHLIGHTS BAR (Cards abaixo da Hero) === */
.highlights-bar {
  padding: 3.5rem 0 3rem;
  background-color: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Card — todos verdes com gradiente e brilho */
.highlight-card {
  position: relative;
  overflow: visible;
  background: linear-gradient(160deg, var(--fundo-escuro-alt) 0%, var(--fundo-escuro) 100%);
  border: none;
  border-radius: 16px;
  padding: 3rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 42, 26, 0.15);
}

/* Efeito de brilho interno */
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(ellipse at 30% 0%, rgba(127, 212, 167, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 42, 26, 0.25);
}

.highlight-card:hover::before {
  background: radial-gradient(ellipse at 30% 0%, rgba(127, 212, 167, 0.25) 0%, transparent 60%);
}

/* Ícone flutuante centralizado acima do card — efeito glass verde claro */
.highlight-card-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(167, 230, 196, 0.55) 0%, rgba(127, 212, 167, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 131, 73, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.highlight-card:hover .highlight-card-icon {
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow:
    0 12px 32px rgba(0, 131, 73, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.highlight-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.9;
}

.highlight-card-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 42, 26, 0.4));
}

/* Título */
.highlight-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}

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

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .highlights-bar {
    padding: 2.5rem 0 2rem;
  }
  .highlight-card {
    padding: 2.5rem 1rem 1.5rem;
  }
  .highlight-card h3 {
    font-size: 0.9375rem;
  }
}

/* === NAV CARDS (Páginas de índice Serviços/Especialidades) === */
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.nav-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--fundo-escuro-alt) 0%, var(--fundo-escuro) 100%);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0, 42, 26, 0.12);
}

.nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: radial-gradient(ellipse at 25% 0%, rgba(127, 212, 167, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 42, 26, 0.22);
}

.nav-card:hover::before {
  background: radial-gradient(ellipse at 25% 0%, rgba(127, 212, 167, 0.22) 0%, transparent 55%);
}

.nav-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.nav-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0 0 auto;
}

.nav-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--fonte-corpo);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #7fd4a7;
  transition: var(--transition);
}

.nav-card:hover .nav-card-link {
  gap: 0.625rem;
  color: #fff;
}

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

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === HERO — Marca d'água Alvo lateral direita === */
.hero-watermark {
  position: absolute;
  right: -3%;
  top: -10%;
  width: 65%;
  height: 120%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.7;
}

/* Page-hero watermark — ajuste para heros mais curtas */
.page-hero .hero-watermark {
  right: 2%;
  top: 0;
  height: 100%;
  width: 50%;
}

.page-hero .hero-watermark img {
  object-position: center center;
}

/* === HERO BADGES EM LINHA === */
.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge-h {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  color: rgba(252, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.hero-badge-h:hover {
  background-color: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

.badge-h-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0.625rem;
  background-color: rgba(127, 212, 167, 0.12);
  color: #7fd4a7;
}

/* === SEÇÃO SERVIÇOS — Ícone de fundo === */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg-icon {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 850px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* === PAGES — HERO INTERNO === */
.page-hero {
  background-color: var(--fundo-escuro);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(0, 42, 26, 0.95) 0%,
    rgba(4, 94, 56, 0.82) 50%,
    rgba(0, 42, 26, 0.9) 100%
  );
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--texto-escuro);
  max-width: 700px;
}

.page-hero p {
  color: rgba(252, 255, 255, 0.78);
  max-width: 580px;
  margin-top: 1.25rem;
}

/* === TIMELINE / PASSO A PASSO === */
.timeline {
  display: flex;
  gap: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.timeline-item {
  flex: 1;
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

/* Gradiente de cores do mais claro ao mais escuro */
.timeline-item:nth-child(1) { background-color: #047a45; }
.timeline-item:nth-child(2) { background-color: #046b3d; }
.timeline-item:nth-child(3) { background-color: #045e38; }
.timeline-item:nth-child(4) { background-color: #035030; }
.timeline-item:nth-child(5) { background-color: #024428; }
.timeline-item:nth-child(6) { background-color: #013a22; }

/* Linha diagonal separadora */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-6deg);
  z-index: 1;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-step {
  font-family: var(--fonte-titulo);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.timeline-item h3 {
  font-family: var(--fonte-corpo);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.timeline-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.timeline-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

/* Responsivo timeline */
@media (max-width: 1024px) {
  .timeline {
    flex-wrap: wrap;
  }
  .timeline-item {
    flex: 1 1 calc(33.33% - 0px);
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    border-radius: var(--border-radius);
  }
  .timeline-item {
    min-height: auto;
    padding: 1.5rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  .timeline-item::after {
    display: none;
  }
  .timeline-step {
    font-size: 1.5rem;
    min-width: 36px;
    margin-bottom: 0;
  }
  .timeline-icon {
    display: none;
  }
  .timeline-item h3 {
    margin-bottom: 0.25rem;
  }
}

/* Fallback antigo (compatibilidade) */
.steps-list {
  counter-reset: step-counter;
  max-width: 700px;
}

.step-item {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-destaque), var(--cor-primaria));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--fonte-corpo);
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: var(--fonte-titulo);
}

.step-content p {
  font-size: var(--texto-small);
  color: var(--texto-muted);
  margin: 0;
}

/* === PROBLEM CARDS VERDES TRANSLÚCIDOS === */
.problem-cards-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-card-green {
  background-color: rgba(0, 131, 73, 0.08);
  border: 1px solid rgba(0, 131, 73, 0.12);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.problem-card-green:hover {
  background-color: rgba(0, 131, 73, 0.12);
  border-color: rgba(0, 131, 73, 0.2);
}

.problem-card-green strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--cor-primaria);
  margin-bottom: 0.25rem;
}

.problem-card-green p {
  font-size: 0.8125rem;
  color: var(--texto-muted);
  margin: 0;
  line-height: 1.6;
}

/* === HIGHLIGHT BOX (dados em destaque) === */
.highlight-box {
  background-color: var(--cor-destaque);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem 2rem 1.5rem;
}

.highlight-box ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.highlight-box ul li {
  padding: 0.5rem 0;
  font-size: var(--texto-small);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.highlight-box ul li::before {
  content: '◆';
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.highlight-box ul li:last-child {
  border-bottom: none;
}

.highlight-box ul li strong {
  color: #fff;
}

.highlight-box p {
  font-size: var(--texto-small);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* === CHECKLIST === */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.section-light .checklist-item {
  background-color: var(--fundo-offwhite);
  border-color: var(--borda-sutil);
}

.checklist-item:hover {
  border-color: rgba(0, 131, 73, 0.2);
}

.checklist-item .check-icon {
  color: var(--cor-destaque);
  font-size: 1.125rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.section-dark .checklist-item .check-icon,
.section-dark-alt .checklist-item .check-icon {
  color: #7fd4a7;
}

.checklist-item p {
  margin: 0;
  font-size: var(--texto-small);
}

/* === BLOG === */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--borda-sutil);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 131, 73, 0.15);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cor-destaque);
  margin-bottom: 0.5rem;
  font-family: var(--fonte-corpo);
}

.blog-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  line-height: 1.35;
  font-family: var(--fonte-titulo);
}

.blog-card-content h3 a:hover {
  color: var(--cor-destaque);
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--texto-muted);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--texto-muted);
}

/* Blog Sidebar */
.blog-sidebar .widget {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--borda-sutil);
}

.blog-sidebar .widget h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--borda-sutil);
  font-family: var(--fonte-titulo);
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--borda-sutil);
  border-radius: var(--border-radius);
  font-family: var(--fonte-corpo);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  background-color: var(--fundo-offwhite);
}

.search-input:focus {
  border-color: var(--cor-destaque);
  box-shadow: 0 0 0 3px rgba(0, 131, 73, 0.08);
  background-color: #fff;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--texto-claro);
}

.category-list a:hover {
  color: var(--cor-destaque);
}

.sidebar-cta {
  background: linear-gradient(160deg, var(--fundo-escuro) 0%, var(--fundo-escuro-alt) 100%) !important;
  color: var(--texto-escuro);
  text-align: center;
  border-color: transparent !important;
}

.sidebar-cta h4 {
  color: var(--texto-escuro) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(252, 255, 255, 0.72);
  margin-bottom: 1.25rem;
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--borda-sutil);
  transition: var(--transition);
  font-family: var(--fonte-corpo);
}

.pagination a:hover,
.pagination span.active {
  background: linear-gradient(135deg, var(--cor-destaque), var(--cor-primaria));
  color: #fff;
  border-color: transparent;
}

/* === CONTATO === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--texto-heading);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--borda-sutil);
  border-radius: var(--border-radius);
  font-family: var(--fonte-corpo);
  font-size: 0.9375rem;
  outline: none;
  transition: var(--transition);
  background-color: var(--fundo-offwhite);
  color: var(--texto-claro);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cor-destaque);
  box-shadow: 0 0 0 3px rgba(0, 131, 73, 0.08);
  background-color: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--fundo-escuro) 0%, var(--fundo-escuro-alt) 100%);
  border-radius: 1rem;
  padding: 2.75rem 2.5rem;
  color: var(--texto-escuro);
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--texto-escuro);
  margin-bottom: 0.75rem;
  font-family: var(--fonte-titulo);
}

.contact-info-card > p {
  color: rgba(252, 255, 255, 0.7);
  font-size: var(--texto-small);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fd4a7;
  font-size: 1.125rem;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  color: var(--texto-escuro);
  margin-bottom: 0.2rem;
  font-family: var(--fonte-corpo);
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.8125rem;
  color: rgba(252, 255, 255, 0.65);
  margin: 0;
}

.map-container {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* === ANIMAÇÕES BASE === */
/* Apenas títulos recebem animação de entrada */
.gsap-ready .title-reveal {
  opacity: 0;
  transform: translateY(20px);
}

/* === RESPONSIVIDADE === */

/* Widescreen */
@media (min-width: 1441px) {
  .container {
    max-width: 1320px;
  }

  :root {
    --section-padding: 7rem 0;
  }
}

/* Tablet paisagem / Desktop pequeno */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4.5rem 0;
    --h1-size: 2.5rem;
    --h2-size: 2rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-bg-icon {
    display: none;
  }

  .split-image::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-centered {
    grid-column: auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-watermark {
    width: 400px;
    opacity: 0.05;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Tablet retrato */
@media (max-width: 768px) {
  :root {
    --h1-size: 1.75rem;
    --h2-size: 1.4375rem;
    --h3-size: 1.1875rem;
    --texto-size: 1rem;
    --section-padding: 3.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--fundo-escuro);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu > a,
  .nav-dropdown > .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.0625rem;
    border-radius: 0;
    color: rgba(252, 255, 255, 0.9);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding: 0.25rem 0 0.75rem 0;
    min-width: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown.open .dropdown-menu {
    display: block !important;
  }

  .nav-dropdown .dropdown-menu a {
    color: rgba(252, 255, 255, 0.65) !important;
    padding: 0.625rem 0 0.625rem 1.25rem !important;
    border-bottom: none !important;
    font-size: 0.9375rem !important;
    border-radius: 0 !important;
    display: block !important;
    width: 100% !important;
    background: none !important;
    transform: none !important;
    left: auto !important;
  }

  .nav-dropdown .dropdown-menu a:hover {
    color: #fff !important;
  }

  .nav-cta {
    margin-top: 1.25rem;
    margin-left: 0;
    text-align: center;
    width: 100%;
    display: block;
    padding: 0.75rem 1.25rem !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }

  .hero-badges-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  .hero-watermark {
    width: 300px;
    right: -15%;
    opacity: 0.05;
  }

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

  .service-card-centered {
    grid-column: auto;
  }

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

  .audience-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .faq-section::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    flex-direction: column;
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  h1, h2, h3 {
    text-align: left;
  }

  .section-header.center {
    text-align: left;
  }

  .cta-section {
    text-align: left;
  }

  .cta-section .btn-group {
    justify-content: flex-start;
  }

  .split-image img {
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  :root {
    --section-padding: 3rem 0;
    --h1-size: 1.5625rem;
    --h2-size: 1.25rem;
  }

  .hero-badges-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-watermark {
    display: none;
  }

  .btn {
    padding: 0.8125rem 1.5rem;
    font-size: 0.875rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  .differential-card {
    padding: 1.75rem 1.5rem;
  }

  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }

  .contact-info-card {
    padding: 2rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════════
   ACESSO RÁPIDO — SEÇÃO DINÂMICA (slider + chips + mega CTA)
   ════════════════════════════════════════════════════════════ */
.quick-access {
  position: relative;
  padding: 6rem 0 6.5rem;
  background: radial-gradient(ellipse at 20% 0%, #07523a 0%, var(--fundo-escuro) 55%, #00150d 100%);
  overflow: hidden;
  isolation: isolate;
}

.quick-access::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(127, 212, 167, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.quick-access > .container { position: relative; z-index: 2; }

/* Orbs de luz no fundo */
.quick-access-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.quick-access-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orb-float 14s ease-in-out infinite;
}
.quick-access-orbs .orb-1 {
  width: 320px; height: 320px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(127, 212, 167, 0.55), transparent 70%);
}
.quick-access-orbs .orb-2 {
  width: 380px; height: 380px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(0, 168, 92, 0.45), transparent 70%);
  animation-delay: -5s;
}
.quick-access-orbs .orb-3 {
  width: 220px; height: 220px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(167, 230, 196, 0.35), transparent 70%);
  animation-delay: -9s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -30px) scale(1.08); }
}

/* Header */
.quick-access-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  color: var(--texto-escuro);
}
.quick-access-header h2 {
  color: #fff;
  font-family: var(--fonte-titulo);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.quick-access-header h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #a7e6c4 10%, #fff 50%, #a7e6c4 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 4s linear infinite;
}
.quick-access-header p {
  color: rgba(252, 255, 255, 0.78);
  font-size: 1.0625rem;
  margin: 0;
}
.section-tag--shimmer {
  background: linear-gradient(90deg, rgba(127, 212, 167, 0.18), rgba(167, 230, 196, 0.4), rgba(127, 212, 167, 0.18));
  background-size: 200% auto;
  color: #d8f3e3;
  border: 1px solid rgba(167, 230, 196, 0.35);
  animation: shimmer-bg 3s linear infinite;
}
@keyframes shimmer-text { to { background-position: 200% center; } }
@keyframes shimmer-bg   { to { background-position: 200% center; } }

/* ── Slider ───────────────────────────── */
.quick-slider {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 1100px;
  border-radius: 22px;
  box-shadow:
    0 20px 60px rgba(0, 42, 26, 0.45),
    0 0 0 1px rgba(167, 230, 196, 0.18);
}
.quick-slider-viewport {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #001a10;
}
.quick-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.quick-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  overflow: hidden;
}
.quick-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.quick-slide.is-active img { transform: scale(1); }
.quick-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 21, 13, 0.85) 0%, rgba(0, 42, 26, 0.55) 45%, rgba(0, 42, 26, 0.15) 100%);
}
.quick-slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  max-width: 60%;
  z-index: 2;
  color: #fff;
}
.quick-slide-caption .eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7e6c4;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 212, 167, 0.18);
  border: 1px solid rgba(167, 230, 196, 0.35);
  margin-bottom: 0.875rem;
}
.quick-slide-caption h3 {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: #fff;
}
.quick-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #002a1a;
  background: linear-gradient(135deg, #a7e6c4 0%, #7fd4a7 100%);
  box-shadow: 0 8px 22px rgba(127, 212, 167, 0.4);
  transition: var(--transition);
}
.quick-slide-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(127, 212, 167, 0.6);
}

/* Setas */
.quick-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 230, 196, 0.4);
  border-radius: 50%;
  background: rgba(0, 21, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
}
.quick-slider-nav:hover {
  background: rgba(127, 212, 167, 0.35);
  transform: translateY(-50%) scale(1.08);
}
.quick-slider-nav.prev { left: 14px; }
.quick-slider-nav.next { right: 14px; }

/* Dots */
.quick-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.quick-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.quick-slider-dots .dot.is-active {
  background: #a7e6c4;
  border-color: #a7e6c4;
  width: 28px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(167, 230, 196, 0.7);
}

/* ── Chips piscantes ──────────────────── */
.quick-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.quick-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(127, 212, 167, 0.14) 0%, rgba(0, 131, 73, 0.08) 100%);
  border: 1px solid rgba(167, 230, 196, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  animation: chip-pulse 2.4s ease-in-out infinite;
  animation-delay: var(--chip-delay, 0s);
}
.quick-chip::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 230, 196, 0.6), transparent 50%, rgba(127, 212, 167, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.quick-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 230, 196, 0.55);
  background: linear-gradient(135deg, rgba(127, 212, 167, 0.24) 0%, rgba(0, 131, 73, 0.16) 100%);
  animation-play-state: paused;
}
.quick-chip:hover::before { opacity: 1; }

.quick-chip .chip-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(167, 230, 196, 0.55), rgba(127, 212, 167, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: #fff;
}
.quick-chip .chip-icon svg { width: 22px; height: 22px; }

.quick-chip .chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
  min-width: 0;
}
.quick-chip .chip-text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}
.quick-chip .chip-cta {
  font-size: 0.8125rem;
  color: #a7e6c4;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.quick-chip .chip-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}
.quick-chip:hover .chip-cta::after { transform: translateX(4px); }

@keyframes chip-pulse {
  0%, 100% {
    box-shadow:
      0 6px 18px rgba(0, 42, 26, 0.25),
      0 0 0 0 rgba(167, 230, 196, 0.0);
  }
  50% {
    box-shadow:
      0 6px 18px rgba(0, 42, 26, 0.25),
      0 0 28px 2px rgba(167, 230, 196, 0.45);
  }
}

/* ── Mega CTA ─────────────────────────── */
.quick-mega-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.quick-mega-line {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  color: #fff;
  margin: 0 0 1.25rem;
}
.quick-mega-line em {
  font-style: italic;
  color: #a7e6c4;
}
.quick-mega-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 2.25rem;
  font-family: var(--fonte-corpo);
  font-size: 1.125rem;
  font-weight: 600;
  color: #002a1a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #a7e6c4 0%, #7fd4a7 50%, #00a85c 100%);
  background-size: 200% auto;
  box-shadow:
    0 12px 35px rgba(0, 168, 92, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-position 0.6s ease;
}
.quick-mega-cta:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow:
    0 18px 45px rgba(0, 168, 92, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.quick-mega-cta .mega-cta-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: mega-shine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.quick-mega-cta .mega-cta-glow {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(167, 230, 196, 0.55), transparent 65%);
  filter: blur(18px);
  opacity: 0.85;
  z-index: -1;
  animation: mega-glow 2.8s ease-in-out infinite alternate;
}
.quick-mega-cta .mega-cta-label,
.quick-mega-cta .mega-cta-arrow { position: relative; z-index: 2; }
.quick-mega-cta .mega-cta-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 42, 26, 0.18);
  transition: transform 0.3s ease;
}
.quick-mega-cta:hover .mega-cta-arrow { transform: translateX(4px); }

@keyframes mega-shine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}
@keyframes mega-glow {
  from { opacity: 0.55; transform: scale(1); }
  to   { opacity: 0.95; transform: scale(1.06); }
}

/* Responsivo */
@media (max-width: 768px) {
  .quick-access { padding: 4.5rem 0 5rem; }
  .quick-slide { aspect-ratio: 4 / 5; min-height: 380px; }
  .quick-slide-caption { padding: 1.75rem 1.5rem; max-width: 100%; }
  .quick-slide::after {
    background: linear-gradient(0deg, rgba(0, 21, 13, 0.92) 0%, rgba(0, 42, 26, 0.5) 55%, rgba(0, 42, 26, 0.2) 100%);
  }
  .quick-slide-caption {
    justify-content: flex-end;
  }
  .quick-slider-nav { width: 38px; height: 38px; }
  .quick-slider-nav.prev { left: 8px; }
  .quick-slider-nav.next { right: 8px; }
  .quick-chips { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .quick-chip { padding: 0.875rem; }
  .quick-chip .chip-icon { flex-basis: 36px; width: 36px; height: 36px; }
  .quick-chip .chip-icon svg { width: 18px; height: 18px; }
  .quick-mega-cta { padding: 1.1rem 1.75rem; font-size: 1rem; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .quick-chips { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .quick-access-orbs .orb,
  .quick-chip,
  .quick-access-header h2 em,
  .section-tag--shimmer,
  .quick-mega-cta .mega-cta-shine,
  .quick-mega-cta .mega-cta-glow { animation: none !important; }
  .quick-slider-track { transition: none !important; }
}


/* ════════════════════════════════════════════════
   TLDR "Em Resumo" — Padrão PHN AEO
   Bloco visível extraído por LLMs (ChatGPT, Claude, Perplexity).
   Inserido entre o hero e a primeira section de conteúdo.
   ════════════════════════════════════════════════ */
.tldr-section {
  padding: 48px 0;
  background: #fafafa;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.tldr-section .container { max-width: 920px; }
.tldr-card {
  background: #ffffff;
  border-left: 4px solid #C9A84C;
  padding: 28px 32px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.tldr-card .tldr-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.tldr-card h2.tldr-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  color: #0A0A0A;
  line-height: 1.25;
}
.tldr-card ul.tldr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tldr-card ul.tldr-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 1rem;
  line-height: 1.55;
  color: #1f2937;
  border-bottom: 1px dashed #eee;
}
.tldr-card ul.tldr-list li:last-child { border-bottom: none; }
.tldr-card ul.tldr-list li::before {
  content: "›";
  position: absolute;
  left: 6px;
  top: 6px;
  color: #C9A84C;
  font-weight: 700;
  font-size: 1.2rem;
}
@media (max-width: 640px) {
  .tldr-section { padding: 32px 0; }
  .tldr-card { padding: 22px 20px; }
  .tldr-card h2.tldr-title { font-size: 1.3rem; }
}

/* ════════════════════════════════════════════════
   FAQ em H6 (Padrão PHN AEO)
   Garante que <h6 class="faq-question"> mantenha o visual
   de botão clicável sem herdar defaults do h6.
   ════════════════════════════════════════════════ */
h6.faq-question {
  margin: 0;
  line-height: 1.4;
}
.faq-question:focus { outline: 2px solid rgba(201, 168, 76, 0.35); outline-offset: -2px; }
