@charset "UTF-8";
/* ==========================================================================
   WECONTROL - MAIN CSS
   Arquitetura BEM | Mobile First | Pixel Perfect
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. IMPORTAÇÃO DE FONTES LOCAIS (FIGMA)
   -------------------------------------------------------------------------- */
/* Acumin Pro - Regular */
@font-face {
  font-family: 'Acumin Pro';
  src: url('/wecontrol/wp-content/themes/site/assets/fonts/Acumin-RPro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
/* Acumin Pro - Bold */
@font-face {
  font-family: 'Acumin Pro';
  src: url('/wecontrol/wp-content/themes/site/assets/fonts/Acumin-BdPro.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
/* Acumin Pro - Italic */
@font-face {
  font-family: 'Acumin Pro';
  src: url('/wecontrol/wp-content/themes/site/assets/fonts/Acumin-ItPro.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
/* Ronzino - Italic (Apenas substitua o nome do arquivo se for diferente) */
@font-face {
  font-family: 'Ronzino';
  src: url('/wecontrol/wp-content/themes/site/assets/fonts/Ronzino-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

/* Usando Acumin Pro como fonte base */
body {
  font-family: 'Acumin Pro', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #94A3B8;
  background-color: #0B192C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
@media (min-width: 1024px) { .section-padding { padding: 120px 0; } }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA & COMPONENTES GERAIS
   -------------------------------------------------------------------------- */
.section-title {
  color: #0B192C;
  font-family: 'Acumin Pro', sans-serif;
  font-size: 2rem;
  font-weight: 400; /* Ajustado para Regular, já que não temos o arquivo Light */
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-title--center { text-align: center; }

/* Aplicação da Ronzino Italic */
.section-title em,
.section-title i,
.section-title .text-green {
  font-family: 'Ronzino', 'Noto Serif', serif;
  color: #72C76F;
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 1024px) { .section-title { font-size: 2.8rem; } }

/* Botões e Badges permanecem iguais... */
.we-badge { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(114, 199, 111, 0.1); border: 1px solid rgba(114, 199, 111, 0.2); border-radius: 12px; margin-bottom: 24px; }
.we-badge--center { margin: 0 auto 24px auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-family: 'Acumin Pro', sans-serif; font-weight: 700; font-size: 0.95rem; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent; white-space: nowrap !important; flex-shrink: 0; }
.btn--icon svg { margin-left: 8px; transition: transform 0.3s ease; }
.btn:hover.btn--icon svg { transform: translateX(4px); }
.btn--primary-glow { background-color: #72C76F; color: #FFFFFF; box-shadow: 0 4px 20px rgba(114, 199, 111, 0.25); }
.btn--primary-glow:hover { background-color: #5DB55A; box-shadow: 0 4px 25px rgba(114, 199, 111, 0.4); }
.btn--primary-glow:hover svg { transform: translate(3px, 3px) !important; }
.btn--outline { background-color: transparent; color: #FFFFFF; border-color: rgba(255, 255, 255, 0.5); }
.btn--outline:hover { border-color: #FFFFFF; background-color: rgba(255, 255, 255, 0.05); }
.btn--white { background-color: #FFFFFF; color: #0B192C; font-size: 0.875rem; padding: 10px 24px; }
.btn--white:hover { background-color: #f1f5f9; }

.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); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-up.delay-1 { transition-delay: 0.2s; }

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  position: fixed;
  background-color: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header__logo {
  flex: 1;
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 45px;
  width: auto;
}
.site-header__logo h2 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.site-header__nav {
  display: none;
}
.site-header__nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(11, 25, 44, 0.98);
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex !important;
    flex: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 32px;
  }
}
.site-header__menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-header__menu-list {
    flex-direction: row;
    gap: 32px;
  }
}
.site-header__menu-list li {
  list-style: none;
}
.site-header__menu-list li a {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-header__menu-list li a:hover {
  opacity: 1;
}
.site-header__actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.site-header__btn-contato {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__btn-contato {
    display: inline-flex;
  }
}
.site-header .mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.site-header .mobile-menu-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-toggle .hamburger-line:last-child {
  margin-bottom: 0;
}
.site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .site-header .mobile-menu-toggle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5. SEÇÕES DA PÁGINA
   -------------------------------------------------------------------------- */
/* --- 5.1 Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  /* Fundo claro para vazar pela onda transparente da imagem pronta */
  background-color: #EBF3F0;
  background-size: cover;
  background-position: center bottom;
  /* Garante que a curva exportada na base fique colada embaixo */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  /* Padding top generoso para o header não cortar a cabeça do homem */
  padding-top: 180px;
  /* Padding bottom maior para dar respiro à onda transparente */
  padding-bottom: 200px;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Ajuste de opacidade do fundo para garantir contraste do texto, se necessário */
  background-color: rgba(11, 25, 44, 0.2);
  z-index: 1;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__content {
  max-width: 650px;
}
/* --- Trecho 5.1 HERO --- */
.hero__title {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title em,
.hero__title i,
.hero__title .text-green {
  font-family: "Noto Serif", serif;
  color: #72C76F;
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.4rem;
  }
}
.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* Força os botões a ficarem na mesma linha no desktop */
}
@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.3px;
}
.hero__bullets .bullet-icon {
  width: 18px;
  height: 18px;
}
.hero__seal {
  position: absolute;
  /* Posicionado sobre a onda transparente exportada na imagem */
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  pointer-events: auto;
  z-index: 5;
}
.hero__seal img {
  width: 100%;
  height: 100%;
}

/* --- 5.2 Sobre Nós --- */
.about {
  background-color: #EBF3F0;
  position: relative;
  z-index: 1;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__container {
    /* CORREÇÃO: Grid 50/50 para equilibrar o peso do texto e da imagem */
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.about__content {
  /* Impede que o texto fique largo demais em telas ultrawide, mantendo a mancha de texto igual ao Figma */
  max-width: 540px;
}
.about__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* PREPARAÇÃO SÊNIOR: Fundo geométrico claro atrás do logo 3D (do Figma) */
  /* Se a sua imagem SVG/PNG já vier com esse fundo cinza, pode apagar este ::before */
}
.about__image-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: url('../images/bg-sobre-shape.svg') no-repeat center center; */
  background-size: contain;
  z-index: -1;
}
.about__image-wrapper img {
  /* CORREÇÃO: Remove a trava de 80% e permite que a imagem ocupe o espaço proporcional ao texto */
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(114, 199, 111, 0.2));
  /* Bônus: Efeito de flutuação suave sutil */
  transform: translateY(0);
  transition: transform 0.6s ease;
}
.about__image-wrapper img:hover {
  transform: translateY(-8px);
}
.about .text-content p {
  color: #475569;
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1.7;
  /* Aumenta o respiro entre as linhas para melhor leitura */
}

/* --- 5.3 Como Atuamos --- */
.process {
  /* Fundo claro da seção Sobre vaza por aqui */
  background-color: #EBF3F0;
  padding-bottom: 160px;
  /* Espaço para o selo vazar */
}
.process__card {
  background: linear-gradient(90deg, #0A2635 0%, #115F3D 100%);
  border-radius: 24px;
  position: relative;
  /* ESSENCIAL: Permite que ela e o selo vazem pro topo e base */
  overflow: visible !important;
  /* Mobile First: Fluxo normal vertical */
  display: flex;
  flex-direction: column;
  padding: 40px 40px 0 40px;
  gap: 40px;
}
@media (min-width: 1024px) {
  .process__card {
    /* Desktop: Grid para posicionar o texto na esquerda, liberando a direita */
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 0;
    padding: 80px;
  }
}
.process {
  /* Linhas sutis do Figma (opcional, posicionado na direita) */
}
.process__bg-lines {
  position: absolute;
  inset: 0;
  /* background: url('../images/process-lines.svg') no-repeat center right; */
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}
.process__content {
  position: relative;
  z-index: 2;
  /* Garante que o texto fique acima da imagem se houver sobreposição */
}
@media (min-width: 1024px) {
  .process__content {
    /* Respiro à direita para os textos não encostarem na imagem */
    padding-right: 60px;
  }
}
.process__title {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.2;
}
.process__title em,
.process__title i {
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .process__title {
    font-size: 2.8rem;
  }
}
.process__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process__item {
  display: flex;
  align-items: center;
  gap: 16px;
  /* Glassmorphism */
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 400;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.process__item:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}
.process__dot {
  width: 10px;
  height: 10px;
  background-color: #72C76F;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(114, 199, 111, 0.9);
}
.process__image-wrapper {
  position: relative;
  z-index: 1;
  /* Fica abaixo do conteúdo se sobrepor */
  display: flex;
  align-items: flex-end;
  /* Colada na base responsivamente */
  justify-content: center;
}
@media (min-width: 1024px) {
  .process__image-wrapper {
    /* A MÁGICA FINAL: Ancoragem absoluta e altura que "estoura" o teto */
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    height: 115% !important;
    /* Cresce 15% acima do topo do card verde! */
    justify-content: flex-end !important;
    pointer-events: none;
    /* Impede cliques acidentais na foto */
  }
}
.process__image {
  max-width: 100%;
  height: auto;
  /* Herda o raio da borda responsivamente */
  border-bottom-right-radius: 24px;
}
@media (min-width: 1024px) {
  .process__image {
    /* Blindagem Sênior Object Fit */
    max-width: none !important;
    height: 100% !important;
    /* Assume a altura de 115% do wrapper */
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: bottom right !important;
       object-position: bottom right !important;
    /* Trava ela no rodapé e na extrema direita SEMPRE */
  }
}
.process__image {
  /* CORREÇÃO usando @media nativo */
}
@media (max-width: 1023px) {
  .process__image {
    border-bottom-left-radius: 24px;
    margin-top: 20px;
  }
}
.process__seal {
  position: absolute;
  bottom: -90px;
  /* Vazando perfeitamente a base do card */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  z-index: 10;
  pointer-events: auto;
}
.process__seal img {
  width: 100%;
  height: 100%;
}

/* --- 5.4 Serviços --- */
.services { background-color: #EBF3F0; position: relative; overflow: hidden; }
.services::before, .services::after { content: ""; position: absolute; border-radius: 50%; filter: blur(120px); z-index: 0; pointer-events: none; }
.services::before { width: 600px; height: 600px; background-color: rgba(114, 199, 111, 0.15); top: 100px; left: -200px; }
.services::after { width: 800px; height: 800px; background-color: rgba(114, 199, 111, 0.12); bottom: 100px; right: -300px; }
.services .container { position: relative; z-index: 2; }
.services .section-title { max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.3; }
.services__subtitle { color: #475569; font-size: 1.125rem; max-width: 500px; margin: 0 auto 48px auto; line-height: 1.6; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
.services__footer { margin-top: 50px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.services__footer-text { font-size: 1.125rem; color: #0B192C; font-weight: 500; max-width: 450px; margin: 0 auto; line-height: 1.5; text-align: center; }

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
  /* O PADDING-TOP GARANTE O ESPAÇO DA IMAGEM */
  padding: 200px 32px 32px 32px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  /* FLEX-START TRAVA O TÍTULO SEMPRE NA MESMA ALTURA */
  justify-content: flex-start;
  transition: transform 0.4s ease;
}
@media (min-width: 1024px) { .service-card--featured { grid-column: 1/-1; min-height: 540px; } }
.service-card:hover { transform: translateY(-8px); }
.service-card:hover .service-card__overlay { background: linear-gradient(to top, rgba(10, 38, 53, 0.98), rgba(17, 95, 61, 0.8)); }
.service-card:hover .service-card__icon-arrow { background-color: #72C76F; border-color: #72C76F; }
.service-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 38, 53, 0.95), rgba(17, 95, 61, 0.6)); transition: background 0.4s ease; z-index: 1; }

.service-card__content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; flex-grow: 1; }
.service-card__header-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 16px; }

.service-card__title { color: #FFFFFF; font-family: "Inter", sans-serif; font-size: 1.75rem; font-weight: 500; margin: 0; }
.service-card__title em, .service-card__title i { font-family: "Noto Serif", serif; font-style: italic; font-weight: 400; color: #FFFFFF; }

.service-card__icon-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background-color: #0B192C; border: 1px solid rgba(255, 255, 255, 0.1); color: #FFFFFF; flex-shrink: 0; transition: all 0.3s ease; }

.service-card__desc { color: rgba(255, 255, 255, 0.9); font-size: 1rem; line-height: 1.5; margin-bottom: 24px; max-width: 90%; }

.service-card__pains { margin-top: 0; }
.service-card__pains strong { display: block; color: #FFFFFF; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.service-card__pains ul { display: flex; flex-direction: column; gap: 8px; }
.service-card__pains li { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; position: relative; padding-left: 16px; line-height: 1.4; }
.service-card__pains li::before { content: "•"; position: absolute; left: 0; top: 0; color: #FFFFFF; }

/* --- 5.5 CTA Intermediário --- */
.cta-banner {
  background-color: #EBF3F0;
  padding-bottom: 80px;
}
.cta-banner__text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0B192C;
  max-width: 600px;
  margin: 0 auto 24px auto;
}

/* --- 5.6 Seção de Contato (contato.php) --- */
.contato-section {
  background-color: #EBF3F0;
  padding-bottom: 120px;
}
.contato-section .contato-container-box {
  background-color: #031B2A;
  /* Azul marinho muito profundo baseado no Figma */
  border-radius: 24px;
  position: relative;
  /* SEM overflow: hidden para o card do formulário poder vazar em Y */
  z-index: 1;
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .contato-section .contato-container-box {
    padding: 0;
    display: flex;
    align-items: center;
  }
}
.contato-section .contato-shards-graphic {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 24px;
  z-index: 1;
  opacity: 0.8;
  /* Suaviza as ondas no fundo */
}
.contato-section .contato-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}
@media (min-width: 1024px) {
  .contato-section .contato-grid {
    grid-template-columns: 1fr 480px;
    /* Trava a largura da coluna do formulário */
    gap: 60px;
  }
}
.contato-section .contato-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .contato-section .contato-text-side {
    padding: 80px 40px 80px 80px;
  }
}
.contato-section .contato-main-title {
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 500;
}
.contato-section .contato-main-title em,
.contato-section .contato-main-title i {
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .contato-section .contato-main-title {
    font-size: 2.8rem;
  }
}
.contato-section .contato-description-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
}
.contato-section .contato-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .contato-section .contato-form-side {
    justify-content: flex-end;
    padding-right: 40px;
    /* Descola o card da borda direita */
  }
}
.contato-section .floating-form-card {
  background-color: #031523;
  /* Tom levemente mais escuro e sólido para destacar do fundo */
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .contato-section .floating-form-card {
    /* A MÁGICA: Faz o card do form vazar para cima e para baixo */
    margin-top: -30px;
    margin-bottom: -30px;
  }
}
.contato-section .form-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   6. ESTILOS DO CF7 (Customizado para a Nova Grade)
   -------------------------------------------------------------------------- */
.cf7-custom-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cf7-custom-grid .cf7-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .cf7-custom-grid .cf7-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.cf7-custom-grid label {
  display: block;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  /* Configuração para o asterisco vermelho que fica ao lado do label (via CF7) */
}
.cf7-custom-grid label .wpcf7-form-control-wrap {
  display: block;
}
.cf7-custom-grid input[type=text],
.cf7-custom-grid input[type=email],
.cf7-custom-grid input[type=tel],
.cf7-custom-grid textarea {
  width: 100%;
  background: transparent;
  /* Fundo escuro nativo */
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Borda sutil */
  border-radius: 6px;
  color: #FFFFFF;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.cf7-custom-grid input[type=text]:focus,
.cf7-custom-grid input[type=email]:focus,
.cf7-custom-grid input[type=tel]:focus,
.cf7-custom-grid textarea:focus {
  outline: none;
  border-color: #72C76F;
  background: rgba(255, 255, 255, 0.03);
}
.cf7-custom-grid input[type=text]::-moz-placeholder, .cf7-custom-grid input[type=email]::-moz-placeholder, .cf7-custom-grid input[type=tel]::-moz-placeholder, .cf7-custom-grid textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cf7-custom-grid input[type=text]::placeholder,
.cf7-custom-grid input[type=email]::placeholder,
.cf7-custom-grid input[type=tel]::placeholder,
.cf7-custom-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cf7-custom-grid textarea {
  resize: vertical;
  min-height: 120px;
}
.cf7-custom-grid .submit-group {
  margin-top: 10px;
}
.cf7-custom-grid input[type=submit] {
  width: 100%;
  background-color: #72C76F;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  /* Pílula igual a todos os botões do site */
  padding: 16px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(114, 199, 111, 0.25);
}
.cf7-custom-grid input[type=submit]:hover {
  background-color: #5DB55A;
  box-shadow: 0 4px 25px rgba(114, 199, 111, 0.4);
}
.cf7-custom-grid .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #ef4444;
  /* Vermelho alerta */
  margin-top: 6px;
  display: block;
}
.cf7-custom-grid .wpcf7-response-output {
  margin: 16px 0 0 !important;
  border-radius: 6px !important;
  font-size: 0.9rem;
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 12px !important;
}

/* --------------------------------------------------------------------------
   7. FOOTER & COMPONENTES GLOBAIS
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #020617;
  padding: 80px 0 40px;
  color: #FFFFFF;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
  /* Centraliza no mobile */
}
@media (min-width: 1024px) {
  .site-footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.site-footer .footer-col-logo {
  max-width: 300px;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer .footer-col-logo {
    text-align: left;
  }
}
.site-footer .footer-col-logo .footer-logo {
  height: 45px;
  margin-bottom: 20px;
}
.site-footer .footer-col-logo .footer-tagline {
  font-size: 0.95rem;
  opacity: 0.6;
}
.site-footer .footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer .footer-menu-list {
    flex-direction: row;
    gap: 40px;
  }
}
.site-footer .footer-menu-list li a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.site-footer .footer-menu-list li a:hover {
  opacity: 1;
  color: #72C76F;
}
.site-footer .btn-back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-footer .btn-back-to-top:hover {
  background: #72C76F;
  transform: translateY(-5px);
}
.site-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px 0;
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer .footer-privacy {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7); /* Mais visível */
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .site-footer .footer-privacy {
    margin-top: 0;
    margin-left: 15px;
  }
}
.site-footer .footer-privacy:hover {
  opacity: 0.8;
}
.site-footer .footer-mangu img {
  height: 20px;
  vertical-align: middle;
  margin-left: 8px;
}

/* WhatsApp Flutuante Fixo (Z-Index Blindado) */
.whatsapp-fixed {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.3s ease !important;
}
.whatsapp-fixed svg {
  width: 32px;
  height: 32px;
  display: block;
}
.whatsapp-fixed:hover {
  transform: scale(1.1) rotate(10deg);
}
.whatsapp-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: zapPulse 2s infinite;
}

@keyframes zapPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* --- AJUSTE MENU MOBILE CENTRALIZADO --- */
@media (max-width: 1023px) {
  .site-header__nav.is-open {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #020617 !important;
    z-index: 9999;
  }
  .site-header__nav.is-open .site-header__menu-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 35px !important;
    padding: 0 !important;
  }
  .site-header__nav.is-open .site-header__menu-list li a {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
  }
}

/* --- ESTILO PÁGINA JURÍDICA (REMASTERIZADO) --- */
.privacy-section {
    background-color: #020617; /* Navy mais profundo */
    padding: 160px 0 100px;
    min-height: 100vh;
}

.privacy-content {
    max-width: 720px; /* Largura ideal para leitura (entre 60 a 75 caracteres por linha) */
    margin: 0 auto;
}

/* Título Principal */
.privacy-content h1 {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    font-size: 3.5rem;
    margin-bottom: 60px;
    letter-spacing: -0.04em;
    text-align: center;
}

/* Subtítulos (Seções 1, 2, 3...) */
.privacy-content h2, 
.privacy-content h3 {
    font-family: "Noto Serif", serif;
    font-style: italic;
    color: #72C76F; /* Verde WeControl */
    margin: 60px 0 24px;
    font-weight: 400;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(114, 199, 111, 0.2); /* Linha sutil de divisão */
    padding-bottom: 10px;
}

/* Texto de Corpo */
.privacy-body, 
.privacy-body p {
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.7); /* Branco suavizado para não cansar a vista */
    font-size: 1.05rem;
    line-height: 1.8; /* Espaçamento entre linhas generoso */
    margin-bottom: 24px;
}

/* Links no texto */
.privacy-body a {
    color: #72C76F;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.privacy-body a:hover { opacity: 0.8; }

/* LISTAS E TÓPICOS (A parte que estava feia) */
.privacy-body ol, 
.privacy-body ul {
    margin: 30px 0;
    padding-left: 0;
    list-style-position: inside;
}

.privacy-body li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Estilizando os números (ol) e pontos (ul) */
.privacy-body ol {
    counter-reset: custom-counter;
    list-style: none;
}

.privacy-body ol li {
    counter-increment: custom-counter;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.privacy-body ol li::before {
    content: counter(custom-counter) ".";
    font-family: "Noto Serif", serif;
    font-style: italic;
    color: #72C76F; /* Números em verde itálico */
    font-weight: 700;
    min-width: 25px;
}

.privacy-body strong {
    color: #FFFFFF;
    font-weight: 600;
}
/*# sourceMappingURL=main.css.map */