@charset "UTF-8";
/* ==========================================================================
   MONTANNA - MAIN SCSS
   ========================================================================== */
/* --------------------------------------------------------------------------
   1. VARIÁVEIS GLOBAIS
   -------------------------------------------------------------------------- */
/* Vermelho Montanna */
/* Azul Escuro Marinho (Fundo Hero e Textos Base) */
/* Azul Claro/Cyan (Destaque nos títulos) */
/* Fundo Off-white seções intermediárias */
/* Cinza Azulado para textos longos */
/* Nova */
/* Nova */
/* Ajustado para o raio mais reto do Figma */
/* --------------------------------------------------------------------------
   2. IMPORTAÇÕES OBRIGATÓRIAS
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
  background: transparent !important;
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: all 0.3s ease;
}
.site-header__container ul, .site-header__container li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-header__container ul::before, .site-header__container ul::after, .site-header__container li::before, .site-header__container li::after {
  display: none !important;
}
.site-header.is-scrolled {
  padding: 15px 0;
}
.site-header.is-scrolled .site-header__container {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 32px;
  border-radius: 100px;
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.site-header__capsule {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1023px) {
  .site-header__nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%); /* Joga pra fora da tela de forma acelerada por GPU */
    width: 100%;
    height: 100vh;
    background-color: #0F172A;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 998;
    visibility: hidden;
    pointer-events: none; /* Bloqueia cliques fantasmas com menu fechado */
  }
  .site-header__nav.is-open {
    transform: translateX(0); /* Desliza pra dentro da tela */
    visibility: visible;
    pointer-events: auto; /* Libera a navegação */
  }
  .site-header__nav .site-header__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .site-header__nav .site-header__menu-list li a {
    font-size: 1.5rem;
    color: #FFFFFF !important;
  }
}
.site-header__menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style-type: none !important;
}
.site-header__menu-list li {
  list-style: none !important;
}
.site-header__menu-list li a {
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-header__menu-list li a:hover {
  opacity: 1;
}
.site-header .btn--primary.site-header__btn-contato {
  padding: 12px 24px;
  font-size: 0.9rem; /* Tamanho aumentado */
  white-space: nowrap;
  border-radius: 100px;
  margin: 0;
}
.site-header .mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1000;
  padding: 0;
  pointer-events: auto !important;
}
.site-header .mobile-menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-toggle .hamburger-line:nth-child(1) {
  top: 0;
}
.site-header .mobile-menu-toggle .hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site-header .mobile-menu-toggle .hamburger-line:nth-child(3) {
  bottom: 0;
}
.site-header .mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: 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) {
  top: 50%;
  transform: rotate(-45deg);
}
@media (max-width: 1023px) {
  .site-header .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   FOOTER - MONTANNA CUSTOM
   ========================================================================== */
.site-footer {
  background-color: #161D32;
  color: #FFFFFF;
  padding: 80px 0 40px;
  font-family: "Inter", sans-serif;
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991px) {
  .site-footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 320px;
}
.site-footer .footer-brand .footer-logo {
  height: 35px;
  width: auto;
}
.site-footer .footer-brand .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-brand .footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .site-footer .footer-brand .footer-contact-info .contact-item {
    justify-content: center;
  }
}
.site-footer .footer-brand .footer-contact-info .contact-item svg {
  color: #ffffff;
  flex-shrink: 0;
}
.site-footer .footer-brand .footer-contact-info .contact-item a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.site-footer .footer-brand .footer-contact-info .contact-item a:hover {
  opacity: 1;
  color: #D32F2F;
}
.site-footer .footer-menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media (max-width: 767px) {
  .site-footer .footer-menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.site-footer .footer-menu-list li a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: 0.3s;
}
.site-footer .footer-menu-list li a:hover {
  opacity: 1;
  color: #D32F2F;
}
.site-footer .btn-back-to-top {
  width: 48px;
  height: 64px;
  background-color: #000080;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.site-footer .btn-back-to-top:hover {
  background-color: #D32F2F;
  transform: translateY(-5px);
}
.site-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.site-footer .footer-bottom .sep {
  margin: 0 10px;
}
.site-footer .footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-bottom a:hover {
  text-decoration: underline;
}
.site-footer .footer-bottom .footer-mangu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer .footer-bottom .footer-mangu img {
  height: 24px;
  width: auto;
}

/* WhatsApp Floating */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-floating:hover {
  transform: scale(1.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Darker Grotesque", sans-serif;
  background-color: #F8FAFC;
  color: #64748B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* A trava isolada no body mata o duplo scroll */
  width: 100%;
  position: relative;
}

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: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0; /* Espaço mobile reduzido */
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 80px 0; /* Espaço desktop reduzido para diminuir os brancos */
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up.delay-1 {
  transition-delay: 0.2s;
}

/* --------------------------------------------------------------------------
   4. BASE BOTÕES MONTANNA
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #D32F2F;
  color: #FFFFFF;
  border: 1px solid transparent;
}
.btn--primary:hover {
  background-color: #B71C1C;
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
  transform: translateY(-2px);
}
.btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Utilitário de Texto (MÁGICA DO TÍTULO ACF) */
.text-highlight {
  color: #1683DB; /* Azul corrigido e mais escuro conforme layout */
  font-weight: inherit;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION - FULL MERGE
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 30% 40%, #2A3864 0%, #0F172A 90%);
  
  /* Mobile: Deixei 100px no topo só para a imagem não esconder debaixo do header transparente */
  padding: 0 0 120px 0; 
  border-radius: 0 0 50% 50%/0 0 5vw 5vw;
  overflow: hidden;
  width: 100%;
  
  display: flex;
  flex-direction: column; 
}

.hero__bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url("../assets/map-dots-bg.svg"); 
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
  border-radius: inherit;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column; 
  gap: 30px;
  order: 2; /* Mobile: Joga o grid inteiro de texto para baixo da imagem */
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: .9;
  margin-bottom: 24px;
  letter-spacing: -1px;
  max-width: 650px; 
}

.hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.325rem;
  font-weight: 500;
  line-height: 1.35; 
  margin-bottom: 40px;
  max-width: 500px; 
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  order: 1; /* Mobile: A imagem vai para CIMA */
}

.hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: float-container 6s ease-in-out infinite;
}

/* ================== DESKTOP ================== */
@media (min-width: 1024px) {
  .hero {
    display: block; /* No desktop, desliga o flex-column */
    padding: 240px 0 180px; /* Restaura os paddings originais gigantes */
  }
  .hero__grid {
    order: unset; /* Reseta ordem */
    display: block; 
  }
  .hero__image {
    order: unset; /* Reseta ordem */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2%;
    width: 50vw;
    max-width: 1000px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .hero__image img {
    max-width: none;
  }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; 
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 64px;
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  stroke: #0F172A;
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) {
  .hero__scroll-indicator {
    bottom: 20px; 
  }
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes float-container {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* --------------------------------------------------------------------------
   6. SOBRE / PONTO ESTRATÉGICO
   -------------------------------------------------------------------------- */
.sobre {
  background-color: #F8FAFC; /* Fundo off-white */
  position: relative;
  z-index: 2;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre__grid {
    /* Imagem Esquerda (1fr), Texto Direita (1.1fr para dar folga) */
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}
.sobre__image img {
  width: 100%;
  border-radius: 12px;
  /* Sombra elegante do Figma */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}
.sobre__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sobre__tag {
  color: #D32F2F; /* Tag vermelha */
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}
.sobre__title {
  color: #0F172A;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.sobre__text {
  color: #374151; /* Cinza mais escuro corrigido */
  font-size: 1.325rem;
  line-height: 1.2; /* Menor espaço entre linhas */
  margin-bottom: 40px;
  max-width: 450px; /* Box do parágrafo menor na largura */
}
.sobre__text p {
  margin-bottom: 16px;
}
.sobre__text p:last-child {
  margin-bottom: 0;
}
.sobre__stats {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Grid de 2 colunas para os cards */
  gap: 20px;
  width: 100%;
}
.sobre .stat-card {
  /* Cinza/Bege clarinho do fundo do card */
  background-color: #F4F5F7;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre .stat-card__value {
  color: #1683DB; /* Azul corrigido e mais escuro */
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.sobre .stat-card__label {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. COMO FAZEMOS (MÉTODO)
   -------------------------------------------------------------------------- */
.metodo {
  background-color: #F8FAFC; /* Mantém o fundo contínuo da seção Sobre */
  position: relative;
  z-index: 2;
}
.metodo__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto; /* Centraliza a div */
}
.metodo__title {
  color: #0F172A;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.metodo__subtitle {
  color: #64748B;
  font-size: 1.325rem;
  font-weight: 500;
  line-height: 1.5;
}
.metodo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .metodo__grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 colunas */
  }
}
@media (min-width: 1024px) {
  .metodo__grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 colunas */
    gap: 30px;
  }
}
.metodo {
  /* O Card Limpo e Sofisticado */
}
.metodo .metodo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Sombra super leve */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Microinteração sênior */
}
.metodo .metodo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.metodo .metodo-card__icon {
  margin-bottom: 24px;
  height: 40px;
  display: flex;
  align-items: center;
}
.metodo .metodo-card__icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none !important; /* Força a remoção de sombras nativas */
  image-rendering: -webkit-optimize-contrast; /* Suaviza a pixelização */
  transform: translateZ(0);
}
.metodo .metodo-card__title {
  font-family: "Manrope", sans-serif; /* Puxa a Manrope */
  color: #0F172A;
  font-size: 20px; /* Exato do Figma */
  font-weight: 700; /* Bold */
  line-height: 28px; /* Exato do Figma */
  margin-bottom: 16px;
}
.metodo .metodo-card__text p {
  font-family: "Inter", sans-serif; /* Puxa a Inter */
  color: #64748B;
  font-size: 16px; /* Exato do Figma */
  line-height: 26px; /* Exato do Figma */
  font-weight: 400; /* Regular */
}
.metodo__footer {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metodo__footer-text {
  color: #64748B;
  font-size: 1.325rem;
  line-height: 1.2;
  max-width: 650px;
  margin: 0 auto 32px auto;
}

/* --------------------------------------------------------------------------
   8. SOLUÇÕES MODULARES
   -------------------------------------------------------------------------- */
.solucoes {
  /* Gradiente linear exato extraído do Figma */
  background: linear-gradient(90deg, #241529 0%, #1685DE 100%);
  position: relative;
  z-index: 2;
}
.solucoes__header {
  margin-bottom: 60px;
  max-width: 600px;
}
.solucoes__title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.solucoes__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.solucoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .solucoes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .solucoes__grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no desktop */
    gap: 24px;
  }
}
.solucoes .solucao-card {
  /* Cor escura translúcida para absorver levemente o gradiente do fundo */
  background-color: rgba(20, 26, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px 24px;
  /* Grid interno do card: Ícone na esquerda, textos na direita */
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(8px);
}
.solucoes .solucao-card:hover {
  transform: translateY(-5px);
  background-color: rgba(20, 26, 45, 0.85);
}
.solucoes .solucao-card__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none !important; /* Limpa sombras e melhora nitidez do ícone */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}
.solucoes .solucao-card__content {
  display: flex;
  flex-direction: column;
}
.solucoes .solucao-card__title {
  font-family: "Manrope", sans-serif;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.solucoes .solucao-card__text p {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 260px; /* Força a quebra de linha após 'de acordo com' */
}

/* ==========================================================================
   9. MARCAS - HIGH FIDELITY (FIGMA WEIGHTS)
   ========================================================================== */
.marcas {
  background-color: #F8FAFC;
  text-align: center;
}
.marcas__header {
  margin-bottom: 60px;
}
.marcas__header .marcas__title {
  font-family: "Manrope", sans-serif;
  color: #1E293B;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.marcas__header .marcas__subtitle {
  font-family: "Inter", sans-serif;
  color: #64748B;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.marcas__info-block {
  max-width: 700px;
  margin: 0 auto;
}
.marcas__info-block .marcas__inner-title {
  font-family: "Manrope", sans-serif;
  color: #1E293B;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.marcas__info-block .marcas__inner-text {
  font-family: "Inter", sans-serif;
  color: #64748B;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}
.marcas__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.marcas__logo-item {
  flex: 1;
  min-width: 200px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-right: 1px solid #E2E8F0;
}
.marcas__logo-item:last-child {
  border-right: none;
}
.marcas__logo-item img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.marcas__logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .marcas__logo-item {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
  }
  .marcas__logo-item:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   10. PRÉ-FOOTER (CTA FINAL)
   ========================================================================== */
.pre-footer {
  background-color: #222C4F;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.pre-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 991px) {
  .pre-footer__grid {
    flex-direction: column;
    text-align: center;
  }
}
.pre-footer__content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}
.pre-footer__content .pre-footer__title {
  font-family: "Darker Grotesque", sans-serif;
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: .9;
  margin-bottom: 24px;
}
.pre-footer__content .pre-footer__text {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}
.pre-footer__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .pre-footer__visual {
    justify-content: center;
    width: 100%;
  }
}
.pre-footer__visual {
  /* O "M" azul claro ao fundo */
}
.pre-footer__visual .pre-footer__m-bg {
  position: absolute;
  right: -10%;
  width: 120%;
  height: 120%;
  background: url("../assets/img/m-stylized-bg.svg") no-repeat center right;
  background-size: contain;
  opacity: 0.15;
  z-index: 1;
}
.pre-footer__visual .pre-footer__boxes {
  position: relative;
  z-index: 2;
  max-width: 110%;
  height: auto;
  transform: translateX(10%);
}
@media (max-width: 991px) {
  .pre-footer__visual .pre-footer__boxes {
    transform: none;
    max-width: 80%;
  }
}

/* ==========================================================================
   11. CONTATO - VERSÃO FINAL PIXEL-PERFECT (MONTANNA)
   ========================================================================== */
.section-contato-global {
  background-color: #FFFFFF;
  padding: 160px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section-contato-global .contato-banner-red {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  z-index: 1;
  /* Overlay que unifica o tom vermelho sobre a imagem do ACF */
}
@media (max-width: 1024px) {
  .section-contato-global .contato-banner-red {
    padding: 60px 30px;
    min-height: auto;
    border-radius: 24px;
  }
  .section-contato-global .contato-banner-red::before {
    border-radius: 24px;
  }
}
.section-contato-global .contato-grid {
  position: relative;
  display: grid;
  /* A coluna da direita (480px) reserva o espaço para o form absoluto */
  grid-template-columns: 1fr 480px;
  gap: 80px;
  width: 100%;
  align-items: center;
}
@media (max-width: 1024px) {
  .section-contato-global .contato-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.section-contato-global {
  /* TEXTOS E INFORMAÇÕES DA ESQUERDA */
}
.section-contato-global .contato-info-left {
  color: #FFFFFF;
}
.section-contato-global .contato-info-left .contato-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-contato-global .contato-info-left .contato-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 480px;
}
.section-contato-global .contato-info-left .contato-detalhes {
  margin-top: 40px;
}
.section-contato-global .contato-info-left .contato-detalhes .detalhe-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.section-contato-global .contato-info-left .contato-detalhes .detalhe-item i {
  font-size: 1.2rem;
  color: #FFFFFF;
  width: 20px;
  text-align: center;
}
.section-contato-global .contato-info-left .contato-detalhes .detalhe-item span, .section-contato-global .contato-info-left .contato-detalhes .detalhe-item a {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.section-contato-global .contato-info-left .contato-detalhes .detalhe-item span:hover, .section-contato-global .contato-info-left .contato-detalhes .detalhe-item a:hover {
  opacity: 0.8;
}
.section-contato-global {
  /* CONTAINER DO FORMULÁRIO (DIREITA COM OVERLAP) */
}
.section-contato-global .contato-form-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
}
.section-contato-global .contato-form-wrapper .form-card-floating {
  background-color: #161D32 !important;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  /* O VAZAMENTO (OVERLAP): Flutua para fora do banner vermelho */
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
}
@media (max-width: 1024px) {
  .section-contato-global .contato-form-wrapper .form-card-floating {
    position: relative;
    top: 0;
    transform: none;
    width: 100%;
    padding: 40px 25px;
    margin-top: 20px;
  }
}
.section-contato-global .contato-form-wrapper .form-card-floating {
  /* Título Interno do Form (Label) */
}
.section-contato-global .contato-form-wrapper .form-card-floating .label-form {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-left: 3px solid #D32F2F;
  padding-left: 15px;
  margin-bottom: 30px;
  display: block;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   ESTILIZAÇÃO INTERNA DO FORMULÁRIO (.montanna-form-grid)
   -------------------------------------------------------------------------- */
.montanna-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
.montanna-form-grid .form-group {
  position: relative;
}
.montanna-form-grid .form-group.span-2 {
  grid-column: span 2 !important;
}
.montanna-form-grid .form-group {
  /* Força o wrapper do CF7 a ocupar 100% da largura do grid */
}
.montanna-form-grid .form-group span.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}
.montanna-form-grid .form-group label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px;
  display: block;
}
.montanna-form-grid .form-group {
  /* Estilo dos Inputs e Textarea */
}
.montanna-form-grid .form-group input.wpcf7-form-control,
.montanna-form-grid .form-group textarea.wpcf7-form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  padding: 12px 16px !important;
  width: 100% !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease;
}
.montanna-form-grid .form-group input.wpcf7-form-control:focus,
.montanna-form-grid .form-group textarea.wpcf7-form-control:focus {
  border-color: #D32F2F !important;
  outline: none;
  background: rgba(255, 255, 255, 0.1) !important;
}
.montanna-form-grid .form-group input.wpcf7-form-control,
.montanna-form-grid .form-group textarea.wpcf7-form-control {
  /* ESTADOS DE VALIDAÇÃO (PASTEL) */
}
.montanna-form-grid .form-group input.wpcf7-form-control.is-invalid,
.montanna-form-grid .form-group textarea.wpcf7-form-control.is-invalid {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.12) !important;
}
.montanna-form-grid .form-group input.wpcf7-form-control.is-valid,
.montanna-form-grid .form-group textarea.wpcf7-form-control.is-valid {
  border-color: #22c55e !important;
  background-color: rgba(34, 197, 94, 0.12) !important;
}
.montanna-form-grid .form-group textarea {
  height: 110px !important;
  resize: none;
}
.montanna-form-grid .form-group {
  /* Disclaimer de Erro em tempo real */
}
.montanna-form-grid .form-group .custom-error-text {
  color: #ef4444;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}
.montanna-form-grid {
  /* BOTÃO ENVIAR MENSAGEM */
}
.montanna-form-grid .submit-wrapper {
  margin-top: 15px;
}
.montanna-form-grid .submit-wrapper input.wpcf7-submit {
  background-color: #D32F2F !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  width: 100% !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.montanna-form-grid .submit-wrapper input.wpcf7-submit:hover {
  background-color: #B71C1C !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}/*# sourceMappingURL=main.css.map */