@charset "UTF-8";
/* ==========================================
   IMPORTAÇÃO DE FONTES (Satoshi para Títulos, Inter para Textos)
   ========================================== */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: unset;
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-family: "Inter", sans-serif; /* Inter como fonte base do site */
  line-height: 1.5;
  overflow-x: clip;
  overflow-y: visible;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Garante que o Lenis não force um comportamento estranho no eixo X */
html.lenis,
html.lenis body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ==========================================
   ANIMAÇÕES DE SCROLL (REVEAL UP)
   ========================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Delays para efeito cascata (elementos lado a lado) */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================
   TIPOGRAFIA DE TÍTULOS (SATOSHI)
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.contato-title,
.hero-interna h1,
.section-header h2,
.beneficio-card h3,
.cta-interna-section h2 {
  font-family: "Satoshi", sans-serif !important; /* Sobrescreve a Inter aqui */
  font-weight: 700;
  color: #1A1A1A;
}

p {
  font: 400 16px/1.6 "Inter", sans-serif;
  color: #666666;
  margin-bottom: 24px;
}

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

.button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif; /* Garante que os botões usem Inter */
}

.button--green {
  background-color: #00C853;
  color: #1A1A1A;
}

.button--green:hover {
  background-color: #00A844;
}

.button--outline {
  background-color: #ffffff;
  color: #1A1A1A;
  border: 1px solid #E2E8F0;
}

.button--outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 56px 0;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background-color: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
}

.site-header.is-scrolled {
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

.site-header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .header-logo img {
  max-height: 40px;
  width: auto;
}

@media (max-width: 1024px) {
  .site-header .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 998;
  }

  .site-header .header-nav.is-open {
    right: 0;
  }
}

.site-header .header-nav .menu-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 1024px) {
  .site-header .header-nav .menu-list {
    flex-direction: column;
    gap: 24px;
  }
}

.site-header .header-nav .menu-list li {
  position: relative;
}

.site-header .header-nav .menu-list li a {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header .header-nav .menu-list li a:hover {
  color: #00C853;
}

.site-header .header-nav .menu-list li.menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}

.site-header .header-nav .menu-list li.menu-item-has-children:hover>a::after {
  transform: translateY(2px) rotate(-135deg);
}
/* ==========================================
   SUBMENU DESKTOP (ESTADO BASE E HOVER)
   ========================================== */
.site-header .header-nav .menu-list li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header .header-nav .menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.site-header .header-nav .menu-list .sub-menu li a {
  padding: 10px 24px;
  font-size: 14px;
  color: #666666;
  display: block; /* Garante área de clique total */
}

.site-header .header-nav .menu-list .sub-menu li a:hover {
  background-color: #F8F9FA;
  color: #00C853;
}


/* ==========================================
   SUBMENU MOBILE (ACCORDION, ALINHAMENTO E SETA)
   ========================================== */
@media (max-width: 1024px) {
  
  /* 1. Alinhamento perfeito entre a palavra e a seta */
  .site-header .header-nav .menu-list > li.menu-item-has-children > a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  /* 2. Seta em estado normal (fechada) */
  .site-header .header-nav .menu-list li.menu-item-has-children > a svg,
  .site-header .header-nav .menu-list li.menu-item-has-children > a i,
  .site-header .header-nav .menu-list li.menu-item-has-children > a::after {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: rotate(0deg); 
  }

  /* 3. Seta gira 180 graus quando o menu abre */
  .site-header .header-nav .menu-list li.menu-item-has-children.is-active-dropdown > a svg,
  .site-header .header-nav .menu-list li.menu-item-has-children.is-active-dropdown > a i,
  .site-header .header-nav .menu-list li.menu-item-has-children.is-active-dropdown > a::after {
    transform: rotate(180deg) !important; 
  }

  /* 4. Caixa do submenu (escondida com max-height = 0) */
  .site-header .header-nav .menu-list .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    
    display: block !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s;
  }

  /* 5. Caixa do submenu aberta (expande até 500px) */
  .site-header .header-nav .menu-list li.menu-item-has-children.is-active-dropdown > .sub-menu {
    max-height: 500px;
    margin-top: 12px !important;
  }

  /* 6. Links internos perfeitamente alinhados no celular */
  .site-header .header-nav .menu-list .sub-menu li a {
    padding: 10px 0; /* Zera os 24px do desktop para centralizar com o item pai */
  }
}

.site-header .header-action {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 999;
}

.site-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .site-header .mobile-menu-toggle {
    display: flex;
  }
}

/* ==========================================
   VISIBILIDADE DO BOTÃO DE CONTATO (HEADER)
   ========================================== */
@media (max-width: 1024px) {
  .site-header .desktop-only-btn {
    display: none !important;
  }
  
  .site-header .mobile-only-btn {
    display: block !important;
  }
  
  /* Garante que o logo tenha espaço para respirar no mobile */
  .site-header .header-logo {
    max-width: 60%; 
  }
}

.site-header .mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1A1A1A;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.site-header .mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header .mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.site-header .mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background-color: #FFFFFF;
}

.hero-section .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.hero-section .hero-bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 40%, rgba(0, 200, 83, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-section .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1024px) {
  .hero-section .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-section .badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #C6F4D6;
  color: #143F24;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #111827;
}

.hero-section h1 strong {
  color: #00C853 !important;
  font-weight: 800;
}

.hero-section .hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-section .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-section .hero-image-wrapper {
  position: relative;
}

.hero-section .hero-image-wrapper .hero-img-main {
  border-radius: 24px;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.05);
}

.hero-section .hero-image-wrapper .floating-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #FFFFFF;
  padding: 16px 32px 16px 16px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-section .hero-image-wrapper .floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    padding: 12px 24px 12px 12px;
  }
}

.hero-section .hero-image-wrapper .floating-badge .icon-check-circle {
  background-color: #E8F5E9;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-section .hero-image-wrapper .floating-badge .icon-check-circle svg path {
  fill: none !important;
  stroke: #00C853 !important;
}

.hero-section .hero-image-wrapper .floating-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.hero-section .hero-image-wrapper .floating-badge .badge-text strong {
  font-size: 28px;
  color: #0F172A;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-section .hero-image-wrapper .floating-badge .badge-text span {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
  line-height: 1.2;
}

.sobre-section {
  background-color: transparent;
}

.sobre-section .sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

@media (max-width: 1024px) {
  .sobre-section .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.sobre-section h2 {
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 24px;
}

.sobre-section .sobre-lista-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: sobre-counter;
}

.sobre-section .sobre-lista-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  counter-increment: sobre-counter;
}

.sobre-section .sobre-lista-features li::before {
  content: counter(sobre-counter);
  background: #00C853;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.sobre-section .sobre-lista-features li .feature-content strong {
  display: block;
  color: #1A1A1A;
  font-size: 16px;
  margin-bottom: 4px;
}

.sobre-section .sobre-lista-features li .feature-content p {
  font-size: 14px;
  margin-bottom: 0;
}

.sobre-section .sobre-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.sobre-section .sobre-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.frentes-section {
  background-color: transparent;
  padding: 100px 0;
}

@media (max-width: 1024px) {
  .frentes-section {
    padding: 60px 0;
  }
}

.frentes-section .section-header {
  margin-bottom: 48px;
  text-align: left;
}

.frentes-section .section-header h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.frentes-section .section-header .section-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.5;
}

.frentes-section .frentes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .frentes-section .frentes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.frentes-section .frente-card {
  background-color: #E8F5E9;
  padding: 32px 32px 40px 32px;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 200, 83, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.frentes-section .frente-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 200, 83, 0.08);
  border-color: rgba(0, 200, 83, 0.15);
}

.frentes-section .frente-card .frente-icon {
  height: 48px;
  width: 48px;
  padding: 10px;
  background: #1A2812;
  border-radius: 12px;
  margin-bottom: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.frentes-section .frente-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

.frentes-section .frente-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 24px;
  flex-grow: 1;
}

.frentes-section .frente-card .link-saiba-mais {
  color: #00C853;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.3s ease;
}

.frentes-section .frente-card .link-saiba-mais:hover {
  color: #00A844;
}

.comparativo-section {
  background-color: transparent;
}

.comparativo-section .section-header {
  margin: 0 auto 48px auto;
  text-align: center;
  width: 640px;
}

@media (max-width: 1024px) {
  .comparativo-section .section-header {
    width: unset;
  }
}

.comparativo-section .section-header h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  color: #1A1A1A;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 24px;
}

.comparativo-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background-color: #00C853;
  border-radius: 4px;
}

.comparativo-section .comparativo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .comparativo-section .comparativo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.comparativo-section .comparativo-coluna {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.comparativo-section .comparativo-coluna .comparativo-img img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.comparativo-section .comparativo-coluna .comparativo-conteudo {
  padding: 48px 40px;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .comparativo-section .comparativo-coluna .comparativo-conteudo {
    padding: 32px 24px;
  }
}

.comparativo-section .comparativo-coluna .comparativo-conteudo h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 800;
}

.comparativo-section .comparativo-coluna .lista-comparativo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparativo-section .comparativo-coluna .lista-comparativo li {
  font-size: 16px;
  color: #1A1A1A;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.comparativo-section .comparativo-coluna .lista-comparativo li .list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparativo-section .card-antes {
  border-color: #FEE2E2;
  background-color: #FEF2F2;
}

.comparativo-section .card-antes h3.text-danger,
.comparativo-section .card-antes .icon-x-red {
  color: #DC2626;
}

.comparativo-section .card-antes .lista-antes li .list-icon {
  color: #EF4444;
}

.comparativo-section .card-depois {
  border-color: #D1FAE5;
  background-color: #E8F5E9;
  box-shadow: 0 20px 40px rgba(0, 200, 83, 0.08);
}

.comparativo-section .card-depois h3.text-success,
.comparativo-section .card-depois .icon-check-green,
.comparativo-section .card-depois .lista-depois li .list-icon {
  color: #00C853;
}

.comparativo-section .comparativo-footer {
  margin-top: 56px;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.comparativo-section .comparativo-footer .texto-wysiwyg {
  font-size: 16px;
  color: #666666;
}

.comparativo-section .comparativo-footer .texto-wysiwyg p {
  margin-bottom: 16px;
}

.feedbacks-section {
  background-color: transparent;
  padding-top: 100px;
  padding-bottom: 120px;
}

.feedbacks-section .section-header h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #1A1A1A;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 64px;
}

.feedbacks-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background-color: #00C853;
  border-radius: 4px;
}

.feedbacks-section .feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .feedbacks-section .feedbacks-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feedbacks-section .feedback-card {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.feedbacks-section .feedback-card:hover {
  transform: translateY(-5px);
}

.feedbacks-section .feedback-card .estrelas {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 20px;
  margin-bottom: 24px;
}

.feedbacks-section .feedback-card .feedback-texto {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 32px;
  flex-grow: 1;
}

.feedbacks-section .feedback-card .feedback-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
}

.feedbacks-section .feedback-card .feedback-autor .autor-foto {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #EAEAEA;
}

.feedbacks-section .feedback-card .feedback-autor strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2px;
}

.feedbacks-section .feedback-card .feedback-autor small {
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 500;
}

.banner-app-section {
  padding-bottom: 120px;
  background-color: transparent;
}

.banner-app-section .banner-app-box {
  background-color: #E8F5E9;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 100px;
  padding: 0px 80px;
  position: relative;
}

@media (max-width: 1024px) {
  .banner-app-section .banner-app-box {
    grid-template-columns: 1fr;
    padding: 40px 32px 0 32px;
    text-align: left;
  }
}

.banner-app-section .banner-app-content h2 {
  color: #1A1A1A;
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.banner-app-section .banner-app-content .banner-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.banner-app-section .banner-app-content .banner-lista li {
  color: #666666;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.banner-app-section .banner-app-content .banner-lista li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C853' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-app-section .banner-app-content .banner-destaque p {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

.banner-app-section .banner-app-content .banner-destaque p strong {
  color: #00C853;
  font-weight: 800;
}

.banner-app-section .banner-app-image {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}

.banner-app-section .banner-app-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: -90px;
  margin-bottom: 0px;
  filter: drop-shadow(0 30px 40px rgba(0, 200, 83, 0.2));
}

@media (max-width: 1024px) {
  .banner-app-section .banner-app-image img {
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(20px);
  }
}

.site-footer {
  padding: 0;
  margin-top: 0;
  color: #1A1A1A;
}

.site-footer__pre-features {
  background-color: #DDEEE3;
  padding: 60px 0;
}

.site-footer__pre-features .footer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer__pre-features .footer-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.site-footer__pre-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.site-footer__pre-features .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__pre-features .feature-item .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-footer__pre-features .feature-item .feature-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.site-footer__pre-features .feature-item .feature-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

.site-footer__main-wrapper {
  background-color: #E8F5E9;
  padding: 80px 0 32px;
}

.site-footer__main-wrapper .footer-main {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer__main-wrapper .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.site-footer__main-wrapper .footer-brand .footer-logo-img {
  max-height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.site-footer__main-wrapper .footer-brand p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  max-width: 340px;
}

.site-footer__main-wrapper .footer-links h4,
.site-footer__main-wrapper .footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 28px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.site-footer__main-wrapper .footer-links ul,
.site-footer__main-wrapper .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__main-wrapper .footer-links ul li,
.site-footer__main-wrapper .footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.site-footer__main-wrapper .footer-links ul a,
.site-footer__main-wrapper .footer-contact ul a {
  color: #4B5563;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.site-footer__main-wrapper .footer-links ul a:hover,
.site-footer__main-wrapper .footer-contact ul a:hover {
  color: #00D34D;
  transform: translateX(4px);
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown .footer-dropdown,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown .footer-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown .footer-dropdown li,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown .footer-dropdown li {
  margin: 0;
  padding: 0;
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown .footer-dropdown a,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown .footer-dropdown a {
  font-size: 14px;
  color: #666666;
  display: block;
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown .footer-dropdown a:hover,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown .footer-dropdown a:hover {
  color: #00D34D;
  transform: translateX(4px);
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown:hover>a,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown:hover>a {
  color: #00D34D;
}

.site-footer__main-wrapper .footer-links ul li.has-dropdown:hover .footer-dropdown,
.site-footer__main-wrapper .footer-contact ul li.has-dropdown:hover .footer-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-footer__main-wrapper .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .site-footer__main-wrapper .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.site-footer__main-wrapper .footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #666666;
}

.site-footer__main-wrapper .footer-bottom .mangu-brand {
  font-size: 14px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer__main-wrapper .footer-bottom .mangu-brand a {
  color: #1A1A1A;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__main-wrapper .footer-bottom .mangu-brand a:hover {
  color: #00D34D;
}

.contato-section {
  background-color: #172E1A;
  color: #FFFFFF;
  padding: 100px 0;
}

.contato-section .contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .contato-section .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.contato-section .contato-infos {
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .contato-section .contato-infos {
    padding-right: 0;
  }
}

.contato-section .contato-infos .contato-title {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.contato-section .contato-infos .contato-desc {
  font-size: 16px;
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 400px;
}

.contato-section .contato-infos p {
  color: #ffffff;
}

.contato-section .contato-infos .contato-detalhes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-section .contato-infos .detalhe-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contato-section .contato-infos .detalhe-item .detalhe-icon {
  width: 48px;
  height: 48px;
  background-color: #00C853;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-section .contato-infos .detalhe-item .detalhe-icon svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
}

.contato-section .contato-infos .detalhe-item .info-text {
  display: flex;
  flex-direction: column;
}

.contato-section .contato-infos .detalhe-item .info-text a,
.contato-section .contato-infos .detalhe-item .info-text p {
  color: #D1D5DB;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
}

.contato-section .contato-infos .detalhe-item .info-text a:hover,
.contato-section .contato-infos .detalhe-item .info-text p:hover {
  color: #00C853;
}

.contato-section .contato-form-box {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .contato-section .contato-form-box {
    padding: 32px 24px;
  }
}

.contato-section .contato-form-box .wpcf7-form {
  display: flex;
  flex-direction: column;
}

.contato-section .contato-form-box .wpcf7-form .form-group {
  margin-bottom: 6px;
}

.contato-section .contato-form-box .wpcf7-form .form-group p {
  margin-bottom: unset;
}

.contato-section .contato-form-box .wpcf7-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.contato-section .contato-form-box .wpcf7-form .form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .contato-section .contato-form-box .wpcf7-form .form-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }
}

.contato-section .contato-form-box .wpcf7-form .form-row .half {
  flex: 1;
  margin-bottom: 0;
}

.contato-section .contato-form-box .wpcf7-form input[type=text],
.contato-section .contato-form-box .wpcf7-form input[type=email],
.contato-section .contato-form-box .wpcf7-form input[type=tel],
.contato-section .contato-form-box .wpcf7-form select,
.contato-section .contato-form-box .wpcf7-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  transition: all 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contato-section .contato-form-box .wpcf7-form input[type=text]:focus,
.contato-section .contato-form-box .wpcf7-form input[type=email]:focus,
.contato-section .contato-form-box .wpcf7-form input[type=tel]:focus,
.contato-section .contato-form-box .wpcf7-form select:focus,
.contato-section .contato-form-box .wpcf7-form textarea:focus {
  outline: none;
  border-color: #00C853;
  box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1);
}

.contato-section .contato-form-box .wpcf7-form input[type=text]::-moz-placeholder,
.contato-section .contato-form-box .wpcf7-form input[type=email]::-moz-placeholder,
.contato-section .contato-form-box .wpcf7-form input[type=tel]::-moz-placeholder,
.contato-section .contato-form-box .wpcf7-form select::-moz-placeholder,
.contato-section .contato-form-box .wpcf7-form textarea::-moz-placeholder {
  color: #9CA3AF;
}

.contato-section .contato-form-box .wpcf7-form input[type=text]::placeholder,
.contato-section .contato-form-box .wpcf7-form input[type=email]::placeholder,
.contato-section .contato-form-box .wpcf7-form input[type=tel]::placeholder,
.contato-section .contato-form-box .wpcf7-form select::placeholder,
.contato-section .contato-form-box .wpcf7-form textarea::placeholder {
  color: #9CA3AF;
}

.contato-section .contato-form-box .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

.contato-section .contato-form-box .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contato-section .contato-form-box .wpcf7-form input[type=submit] {
  width: 100%;
  background-color: #00C853;
  color: #FFFFFF;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 16px;
}

.contato-section .contato-form-box .wpcf7-form input[type=submit]:hover {
  background-color: #00A844;
}

.contato-section .contato-form-box .wpcf7-form .custom-error-msg {
  display: block;
  color: #DC2626;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.contato-section .contato-form-box .wpcf7-form .error-border {
  border-color: #DC2626 !important;
  background-color: #FEF2F2 !important;
}

.contato-section .contato-form-box .wpcf7-form .wpcf7-response-output {
  margin: 16px 0 0 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.page-interna .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.page-interna .section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-interna .section-header .section-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.page-interna .hero-interna {
  background-color: transparent;
  padding: 120px 0 80px;
}

.page-interna .hero-interna .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
}

@media (max-width: 768px) {
  .page-interna .hero-interna .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.page-interna .hero-interna .hero-content {
  background-color: #E8F5E9;
  padding: 60px 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .page-interna .hero-interna .hero-content {
    align-items: center;
    padding: 40px 24px;
  }
}

.page-interna .hero-interna .badge--light-green {
  background-color: #00D34D;
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.page-interna .hero-interna h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
  color: #1A1A1A;
}

.page-interna .hero-interna h1 strong {
  color: #00D34D;
}

.page-interna .hero-interna .hero-text {
  font-size: 18px;
  line-height: 1.5;
  color: #666666;
  max-width: 90%;
  margin: 0;
}

.page-interna .hero-interna .hero-image-wrapper {
  height: 100%;
}

.page-interna .hero-interna .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

.page-interna .beneficios-section .beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .page-interna .beneficios-section .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

.page-interna .beneficios-section .beneficio-card {
  background-color: #E8F5E9;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.page-interna .beneficios-section .beneficio-card:hover {
  transform: translateY(-5px);
}

.page-interna .beneficios-section .beneficio-card .icon-box {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: #112F20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-interna .beneficios-section .beneficio-card .icon-box img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.page-interna .beneficios-section .beneficio-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-interna .beneficios-section .beneficio-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0;
}

.page-interna .beneficios-section .beneficio-card.card-destaque {
  background-color: #00D34D;
}

.page-interna .beneficios-section .beneficio-card.card-destaque h3,
.page-interna .beneficios-section .beneficio-card.card-destaque p {
  color: white;
}

.page-interna .beneficios-section .beneficio-card.card-destaque .icon-box {
  background-color: white;
}

.page-interna .beneficios-section .beneficio-card.card-destaque .icon-box img {
  filter: none;
}

.page-interna .jornada-section .jornada-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .page-interna .jornada-section .jornada-flow {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.page-interna .jornada-section .jornada-flow::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 0;
  border-top: 2px dashed #D1D5DB;
  z-index: 0;
}

@media (max-width: 768px) {
  .page-interna .jornada-section .jornada-flow::before {
    display: none;
  }
}

.page-interna .jornada-section .jornada-step {
  position: relative;
  text-align: center;
  counter-increment: step-counter;
}

.page-interna .jornada-section .jornada-step::before {
  content: counter(step-counter);
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid #00D34D;
  color: #00D34D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.page-interna .jornada-section .jornada-step:last-child::before {
  background: #00D34D;
  color: white;
}

.page-interna .jornada-section .jornada-step h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1A1A1A;
}

.page-interna .jornada-section .jornada-step p {
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

.page-interna .cta-interna-section {
  padding: 80px 0 120px;
  text-align: center;
  overflow: hidden;
}

.page-interna .cta-interna-section .cta-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.page-interna .cta-interna-section .cta-content h2 {
  color: #1A1A1A;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.page-interna .cta-interna-section .cta-content p {
  color: #666666;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.page-interna .cta-interna-section .cta-image {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: -5px;
}

.page-interna .cta-interna-section .cta-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
}

body.page-slug-condominos .hero-interna .hero-grid,
body.page-condominos .hero-interna .hero-grid {
  gap: 0;
}

body.page-slug-condominos .hero-interna .hero-grid .hero-content,
body.page-condominos .hero-interna .hero-grid .hero-content {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 60px 60px 60px 48px;
}

body.page-slug-condominos .hero-interna .hero-grid .hero-image-wrapper,
body.page-condominos .hero-interna .hero-grid .hero-image-wrapper {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

body.page-slug-condominos .hero-interna .hero-grid .hero-image-wrapper img,
body.page-condominos .hero-interna .hero-grid .hero-image-wrapper img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.page-slug-condominos .beneficios-section .beneficios-grid,
body.page-condominos .beneficios-section .beneficios-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {

  body.page-slug-condominos .beneficios-section .beneficios-grid,
  body.page-condominos .beneficios-section .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-slug-condominos .beneficios-section .beneficios-grid .beneficio-card:nth-child(1),
  body.page-condominos .beneficios-section .beneficios-grid .beneficio-card:nth-child(1) {
    grid-column: span 2;
  }
}

/* ==========================================
   POPUP DE COOKIES LGPD
   ========================================== */
.cookies {
    position: fixed;
    bottom: -150px; /* Começa escondido pra baixo */
    left: 0;
    width: 100%;
    background-color: #111827; /* Fundo escuro elegante */
    color: #FFFFFF;
    padding: 16px 24px;
    z-index: 99999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
}
.cookies.open {
    bottom: 0; /* JS adiciona essa classe para subir o aviso */
}
.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}
.cookies p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.cookies a {
    color: #00C853;
    font-weight: bold;
    text-decoration: underline;
}
.cookies button {
    background-color: #00C853;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}
.cookies button:hover {
    background-color: #00E676;
}
@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookies button { width: 100%; }
}

/* ==========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde original do WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999; /* Fica na frente de tudo */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-flutuante:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
}

/* Ajuste para o celular (não tampar conteúdo) */
@media (max-width: 768px) {
    .whatsapp-flutuante {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-flutuante svg {
        width: 28px;
        height: 28px;
    }
}

/*# sourceMappingURL=main.css.map */