/* Fontes */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* =====================
   VARIÁVEIS
   ===================== */
:root {
  --primaria:         #00652E;   /* verde escuro */
  --primaria-escura:  #003D1A;   /* verde mais escuro */
  --primaria-clara:   #E8F5EE;   /* verde claríssimo / fundo */
  --secundaria:       #80BF00;   /* verde claro */
  --secundaria-escura:#5A8A00;   /* verde claro escurecido */
  --texto:            #1A1A1A;   /* quase preto */
  --texto-muted:      #6B7280;   /* cinza médio */
  --fundo:            #FFFFFF;   /* branco */
  --fundo-alt:        #F5F5F5;   /* cinza claro neutro */
  --fundo-escuro:     #00652E;   /* verde escuro — fundos de seção */
  --fundo-escuro2:    #004D22;   /* verde escuro intermediário */
  --border:           #E0E0E0;   /* cinza claro */
  --sombra:           0 4px 24px rgba(0, 0, 0, 0.07);
  --sombra-lg:        0 12px 48px rgba(0, 0, 0, 0.14);
  --raio:             12px;
  --raio-lg:          24px;
}

/* =====================
   BASE
   ===================== */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--texto);
  background: var(--fundo);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 60px); }
h3 { font-size: clamp(26px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2.5vw, 30px); }

p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px 0;
  color: var(--texto);
}

a {
  text-decoration: none;
  color: var(--primaria);
  transition: color 0.2s;
}

img { max-width: 100%; height: auto; display: block; }

/* =====================
   LAYOUT UTILITIES
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-muted  { color: var(--texto-muted); }

/* =====================
   HERO WATERMARK
   ===================== */
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  pointer-events: none;
  z-index: 0;
}

.hero-watermark img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.04;
}

/* garante que o conteúdo do hero fique acima da marca d'água */
.hero .container {
  position: relative;
  z-index: 1;
}

/* =====================
   WATERMARK GENÉRICA (.wm)
   — usada em seções escuras e claras
   ===================== */

/* toda seção que usa .wm precisa de position: relative */
section {
  position: relative;
  overflow: hidden; /* impede que a marca d'água cause scroll horizontal */
}

.wm {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 560px;
  pointer-events: none;
  z-index: 0;
}

/* posição esquerda */
.wm.wm-left {
  right: auto;
  left: -4%;
}

/* posição direita — padrão do .wm, mas explicitada */
.wm.wm-right {
  left: auto;
  right: -4%;
}

/* posição centralizada */
.wm.wm-center {
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 680px;
}

.wm img {
  width: 100%;
  height: auto;
  /* fundo preto → inverte para branco, ficando sutil sobre fundo escuro */
  filter: brightness(0) invert(1);
  opacity: 0.05;
}

/* variante para seções claras — usa o verde no lugar do branco */
.wm.wm-light img {
  filter: brightness(0) saturate(100%)
          invert(25%) sepia(95%) saturate(500%)
          hue-rotate(112deg) brightness(0.9) contrast(1.1);
  opacity: 0.04;
}

/* garante que o conteúdo fique acima da marca */
.wm + .container,
section > .container {
  position: relative;
  z-index: 1;
}

/* =====================
   SECTION LABEL
   ===================== */
.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primaria);
  margin-bottom: 12px;
}

/* =====================
   BOTÕES
   ===================== */
.btn-primario {
  display: inline-block;
  background: var(--secundaria);
  color: var(--fundo-escuro);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: var(--raio);
  border: 2px solid var(--secundaria);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primario:hover {
  background: var(--secundaria-escura);
  border-color: var(--secundaria-escura);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 101, 46, 0.25);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: var(--raio);
  border: 2px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-branco {
  display: inline-block;
  background: #fff;
  color: var(--primaria-escura);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: var(--raio);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-branco:hover {
  background: var(--secundaria);
  border-color: var(--secundaria);
  color: var(--primaria-escura);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* =====================
   FEATURE LIST
   ===================== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--texto-muted);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
  color: var(--primaria);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================
   CLOSING STATEMENT
   ===================== */
.closing-statement {
  background: var(--primaria-clara);
  border-left: 4px solid var(--primaria);
  padding: 14px 20px;
  border-radius: 0 var(--raio) var(--raio) 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primaria-escura);
  margin-top: 24px;
  letter-spacing: 0.3px;
}

/* =====================
   NAV / HEADER
   ===================== */
nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.menu-header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primaria);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.menu-header .logo img {
  height: 60px;
  width: auto;
}

.menu-header .logo a:hover {
  color: var(--primaria-escura);
}

.menu-header ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-header ul li a {
  color: var(--texto-muted);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.menu-header ul li a:hover {
  color: var(--primaria);
  background: var(--primaria-clara);
}

.menu-header ul li a.nav-cta {
  background: var(--primaria);
  color: #fff;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
}

.menu-header ul li a.nav-cta:hover {
  background: var(--primaria-escura);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--primaria);
  border: 1px solid var(--border);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: var(--primaria-escura);
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(0, 101, 46, 0.50) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(128, 191, 0, 0.10) 0%, transparent 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--fundo);
  clip-path: ellipse(65% 100% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secundaria);
  color: var(--primaria-escura);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primaria-escura);
  border-radius: 50%;
  animation: badge-pulse 1.8s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--secundaria);
}

.hero-subtitulo {
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
  margin-bottom: 20px;
}

.hero-destaque {
  color: var(--secundaria);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
  border-left: 3px solid var(--secundaria);
  padding-left: 16px;
}

.hero-apoio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual / card direita */
.hero-visual-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--raio-lg);
  padding: 48px 36px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-visual-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(128, 191, 0, 0.06);
  border-radius: 50%;
}

.hero-visual-icon {
  font-size: 72px;
  color: var(--secundaria);
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.hero-version-tag {
  background: var(--primaria);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 6px;
  padding: 8px 36px;
  border-radius: var(--raio);
  display: inline-block;
  margin: 8px 0 20px;
}

.hero-visual-box h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
}

.hero-visual-box > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* =====================
   SECTION: SOBRE
   ===================== */
.sobre {
  background: var(--fundo);
  padding: 100px 0;
}

.sobre-texto {
  font-size: 17px;
  color: var(--texto-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.9;
}

.sobre-destaques {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sobre-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fundo-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primaria-escura);
  transition: all 0.25s;
  cursor: default;
}

.sobre-pill i {
  color: var(--primaria);
  font-size: 18px;
}

.sobre-pill:hover {
  background: var(--primaria);
  color: #fff;
  border-color: var(--primaria);
  transform: translateY(-3px);
  box-shadow: var(--sombra);
}

.sobre-pill:hover i {
  color: var(--secundaria);
}

/* =====================
   SECTION: EVOLUÇÃO
   ===================== */
.evolucao {
  background: var(--fundo-alt);
  padding: 100px 0;
}
.evolucao .text-center > p {
  max-width: 620px;
  margin: 0 auto;
}

.evolucao-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 48px;
}

.evolucao-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 52px;
}

.evolucao-divider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--secundaria);
  border-radius: 50%;
  color: var(--primaria-escura);
  font-size: 20px;
}

.evolucao-card {
  background: #fff;
  border-radius: var(--raio-lg);
  padding: 36px;
  box-shadow: var(--sombra);
}

.evolucao-card.antes {
  border-top: 4px solid #CBD5E1;
  margin-right: 24px;
}

.evolucao-card.agora {
  border-top: 4px solid var(--primaria);
  margin-left: 24px;
}

.evolucao-card-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.evolucao-card.antes .evolucao-card-label { color: #94A3B8; }
.evolucao-card.agora .evolucao-card-label { color: var(--primaria); }

.evolucao-card h3 { font-size: 30px; margin-bottom: 24px; }
.evolucao-card.antes h3 { color: #94A3B8; }
.evolucao-card.agora h3 { color: var(--primaria); }

.evolucao-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--texto-muted);
}

.evolucao-item:last-child { border-bottom: none; }

.evolucao-item i { font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.evolucao-card.antes .evolucao-item i { color: #CBD5E1; }

.evolucao-card.agora .evolucao-item i {
  color: #fff;
  background: var(--primaria);
  border-radius: 50%;
  padding: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.evolucao-mensagem {
  background: var(--primaria-escura);
  border-radius: var(--raio-lg);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
  color: #fff;
}

.evolucao-mensagem h3 {
  color: var(--secundaria);
  font-size: 34px;
  margin: 0;
}

/* =====================
   NOVIDADES — SIDEBAR TABS
   ===================== */
.novidades-sidebar {
  background: var(--primaria-escura);
  background-image: linear-gradient(135deg, #003D1A 0%, #00652E 100%);
  padding: 80px 0;
}

.nov-header {
  margin-bottom: 48px;
}

.nov-header .section-label { color: var(--secundaria); }
.nov-header h2 { color: #fff; }
.nov-header p  { color: #fff; font-size: 17px; max-width: 580px; margin: 0 auto; }

/* section-label branca — para seções com fundo escuro */
.cta-final .section-label,
.colaborativo .section-label { color: var(--secundaria); }

/* card branco que envolve sidebar + conteúdo */
.nov-card {
  background: var(--fundo);
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* grid: sidebar | conteúdo */
.nov-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: start;
}

/* SIDEBAR — botões verticais */
.nov-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--fundo-alt);
  border-right: 1px solid var(--border);
  height: 100%;
}

.nov-btn {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  position: relative;
}

.nov-btn:last-child { border-bottom: none; }

.nov-btn:hover { background: var(--primaria-clara); }

.nov-btn.active { background: #fff; }

/* coluna do número */
.nov-btn-num {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 24px 0;
  background: var(--border);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--texto-muted);
  transition: all 0.2s;
  border-right: 1px solid var(--border);
}

.nov-btn.active .nov-btn-num {
  background: var(--primaria);
  color: #fff;
  border-color: var(--primaria);
}

.nov-btn:hover:not(.active) .nov-btn-num {
  background: var(--primaria-clara);
  color: var(--primaria);
}

/* coluna central — ícone + label */
.nov-btn-body {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  gap: 4px;
}

.nov-btn-body i {
  font-size: 18px;
  color: var(--texto-muted);
  transition: color 0.2s;
}

.nov-btn.active .nov-btn-body i { color: var(--primaria); }
.nov-btn:hover:not(.active) .nov-btn-body i { color: var(--primaria); }

.nov-btn-body span,
.nov-btn-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--texto-muted);
  transition: color 0.2s;
  line-height: 1.3;
}

.nov-btn.active .nov-btn-body span,
.nov-btn.active .nov-btn-label { color: var(--primaria); }
.nov-btn:hover:not(.active) .nov-btn-body span,
.nov-btn:hover:not(.active) .nov-btn-label { color: var(--primaria); }

/* seta */
.nov-arrow {
  font-size: 12px;
  color: var(--border);
  padding-right: 14px;
  transition: all 0.25s;
}

.nov-btn.active .nov-arrow {
  color: var(--primaria);
  transform: translateX(3px);
}

/* barra esquerda indicadora */
.nov-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primaria);
  opacity: 0;
  transition: opacity 0.2s;
}

.nov-btn.active::before { opacity: 1; }

/* PAINÉIS — conteúdo à direita */
.nov-content {
  position: relative;
}

.nov-content-inner {
  position: relative; /* JS vai setar height aqui */
}

.nov-panel {
  padding: 48px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nov-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* barra colorida no topo do painel — desativada */

/* ícone e número usados dentro dos painéis */
.novidade-numero {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
}

.novidade-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--primaria-clara);
  border-radius: var(--raio);
  margin-bottom: 16px;
}

.novidade-icon-box i {
  color: var(--primaria);
  font-size: 24px;
}

/* Pedidos — blocos status/eventos */
.pedido-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.pedido-block {
  background: var(--fundo-alt);
  border: 1px solid var(--border);
  border-radius: var(--raio);
  padding: 20px;
}

.pedido-block h4 {
  color: var(--primaria);
  font-size: 22px;
  margin-bottom: 6px;
}

.pedido-block p {
  font-size: 13px;
  color: var(--texto-muted);
  margin: 0;
}

/* número decorativo */
.nov-panel .novidade-numero {  position: absolute;
  top: 12px;
  right: 28px;
  font-size: 120px;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.nov-panel > *:not(.novidade-numero) {
  position: relative;
  z-index: 1;
}

/* =====================
   SECTION: PÚBLICOS
   ===================== */
.publicos {
  background: var(--fundo);
  padding: 100px 0;
}

.publicos h2 { text-align: center; margin-bottom: 12px; }

.publicos-intro {
  text-align: center;
  color: var(--texto-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 48px;
}

.publicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.publico-card {
  background: var(--fundo-alt);
  border: 1px solid var(--border);
  border-radius: var(--raio-lg);
  padding: 32px 24px;
  transition: all 0.3s;
}

.publico-card:hover {
  border-color: var(--primaria);
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.publico-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primaria);
  border-radius: var(--raio);
  margin-bottom: 18px;
}

.publico-icon i { font-size: 21px; color: var(--secundaria); }

.publico-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--texto);
  margin-bottom: 16px;
}

.publico-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.publico-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--texto-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.publico-card ul li:last-child { border-bottom: none; }

.publico-card ul li::before {
  content: '→';
  color: var(--primaria);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

/* =====================
   SECTION: JÁ USA / CONHECENDO
   ===================== */
.ja-usa { background: var(--fundo-alt); padding: 100px 0; }
.conhecendo { background: var(--fundo); padding: 100px 0; }

.secao-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.secao-split-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primaria);
  background: var(--primaria-clara);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.secao-split h2 { margin-bottom: 20px; }
.secao-split > div > p { color: var(--texto-muted); }

.secao-split-card {
  background: var(--primaria-escura);
  background-image: linear-gradient(145deg, #003D1A, #00652E);
  border-radius: var(--raio-lg);
  padding: 40px;
  color: #fff;
}

.secao-split-card h3 { color: var(--secundaria); margin-bottom: 24px; font-size: 32px; }

.secao-split-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.secao-split-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secao-split-card ul li:last-child { border-bottom: none; }

.secao-split-card ul li i {
  color: var(--secundaria);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.secao-split-fechamento {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

/* =====================
   SECTION: COLABORATIVO
   ===================== */
.colaborativo {
  background: var(--fundo-alt);
  padding: 100px 0;
  text-align: center;
}

.colaborativo h2 { color: var(--primaria); margin-bottom: 20px; }

.colaborativo > .container > p {
  color: var(--texto-muted);
  max-width: 620px;
  margin: 0 auto 16px;
  font-size: 17px;
}

.colaborativo-fechamento {
  display: inline-block;
  margin-top: 24px;
  font-size: 15px;
  color: var(--texto-muted);
  font-style: italic;
}

/* =====================
   SECTION: CTA FINAL
   ===================== */
.cta-final {
  background: var(--primaria);
  background-image: linear-gradient(135deg, var(--primaria-escura) 0%, var(--primaria) 60%, #009940 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 16px;
}

.cta-final > .container > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   FOOTER MINIMALISTA
   ===================== */
footer.v2-footer-minimal {
  background: var(--primaria-escura);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.v2-footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: white;
}

.v2-footer-copyright a {
  color: white;
  transition: color 0.2s;
}

.v2-footer-copyright a:hover { color: var(--secundaria); }

/* =====================
   COOKIE BANNER
   ===================== */
.container_wrappercl {
  width: 100%;
  background: rgba(0, 61, 26, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  bottom: 0;
  z-index: 9999;
  padding: 16px 0;
}

.containercl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.text_policycl p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.closecl {
  background: var(--secundaria);
  border: none;
  color: var(--fundo-escuro);
  font-weight: 700;
  border-radius: var(--raio);
  cursor: pointer;
  padding: 10px 24px;
  transition: all 0.25s;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  flex-shrink: 0;
}

.closecl:hover {
  background: var(--secundaria-escura);
  color: #fff;
}
