/*

Dignai-vos conceder-me que vos louve, ó Virgem Sagrada. Dai-me virtude contra os vossos inimigos.

Eu sou todo vosso, e tudo o que tenho vos pertence, ó meu amável Jesus. Por Maria, vossa Santa Mãe.

*/

@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url("ponteiro.svg") 0 0, auto;
  /* Cursor padrão */
}

/* Variáveis */
:root {
  --main-color: #FB7E1B;
}

html {
  scroll-behavior: smooth;
  /* Ativa scroll suave em todo site */
}

/* Corpo da página */
body {
  background: #EC6A00;
  /* Cor inicial */
  padding-left: 10px;
  padding-right: 10px;
  height: 1000vh;
  overflow-x: hidden;
  /* Bloqueia rolagem horizontal */
  animation: mudarCor 1s forwards 2s;

}

#particles-js {
  position: fixed;
  /* Alterado de absolute para fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Mantém atrás de todo o conteúdo */
  pointer-events: none;
  /* Permite interação com elementos abaixo */
}

/* Animação de transição de fundo */
@keyframes mudarCor {
  to {
    background-color: #191919;
  }
}

/* Cursor de texto (texto.svg) */
input[type="text"],
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  cursor: url("ponteiro.svg") 0 0, text;
}

/* Cursor para botões e links (indicador.svg) */
button,
a,
.clickable {
  cursor: url("indicador.svg") 0 0, pointer;
}

/* Cursor de agarrar (drag) e agarrando (ao clicar) */
.drag {
  cursor: url("ponteiro.svg") 0 0, grabbing;
}

.drag:active {
  cursor: url("ponteiro.svg") 0 0, grabbing;
}





/* No seu arquivo style.css ou na tag <style> */
#content-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#content-wrapper.show {
  opacity: 1;
  visibility: visible;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  border: 5px solid #FB7E1B;
  border-radius: 50%;
  border-top: 5px solid transparent;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

/* Garante que todas as seções respeitem a largura da viewport */
section {
  width: 100%;
  max-width: 100vw; /* Limite máximo = largura da viewport */
  position: relative;
  overflow: hidden; /* Esconde qualquer conteúdo que vaze */
}

/* Reset específico para elementos que usam 100vw */
.full-viewport-width {
  width: 100%;
  margin-left: 0; /* Remove cálculos problemáticos */
}




/* Remove margens padrão e garante box-model consistente */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Bloqueia rolagem horizontal global */
}

/* Define box-sizing como border-box para todos os elementos */
*, *::before, *::after {
  box-sizing: border-box;
}












/* ========================================================================================================
                                                                                                     NAVBAR
=========================================================================================================*/

/* Estilo base da navbar - mantido para desktop e mobile */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

/* Container do logo */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

/* Estilo do texto do logo */
.logo {
  color: #e7e7e7;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Parte laranja do logo */
.logo .orange {
  color: #FB7E1B;
  font-family: Bebas Neue;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Overlay invisível do logo para melhor acessibilidade */
.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-indent: -9999px;
}

/* NAVEGAÇÃO DESKTOP (visível apenas em telas grandes) */
.nav-links {
  display: flex;
  list-style: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Itens da navegação desktop */
.nav-links li {
  margin-left: 30px;
}

/* Links da navegação desktop */
.nav-links a {
  font-family: 'Bebas Neue';
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 100;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

/* Efeito de underline animado nos links desktop */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  right: 0;
  background-color: #FB7E1B;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* BOTÃO HAMBÚRGUER (visível apenas em mobile) */
.hamburger {
  display: none;
  /* Escondido por padrão (só aparece em mobile) */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  /* Fica acima do overlay */
}

/* Linhas do botão hambúrguer */
.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* OVERLAY DO MENU MOBILE */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.95);
  /* Fundo escuro semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Lista de links no overlay mobile */
.mobile-nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

/* Itens do menu mobile */
.mobile-nav-links li {
  margin: 25px 0;
}

/* Links do menu mobile */
.mobile-nav-links a {
  color: #ffffff;
  font-family: 'Bebas Neue';
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #FB7E1B;
}

/* ESTADOS ATIVOS */
/* Quando o menu está aberto */
.navbar.menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

/* Transforma o hambúrguer em "X" quando aberto */
.navbar.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* RESPONSIVIDADE - TELAS MENORES (MOBILE) */
@media (max-width: 768px) {

  /* Esconde a navegação desktop */
  .nav-links {
    display: none;
  }

  /* Mostra o botão hambúrguer */
  .hamburger {
    display: block;
  }

  /* Ajusta o padding da navbar */
  .navbar {
    padding: 15px 20px;
  }
}







/* ========================================================================================================
                                                                                               HERO SECTION
=========================================================================================================*/

/* Estilo da seção hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 120vw;
  padding: 0 50px;
  color: #e7e7e7;
  position: relative;
  overflow: hidden;
  text-align: center;
  /* Centraliza todo o conteúdo */
}

/* Imagem de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/hero-background.jpg');
  /* Adicione sua imagem de fundo aqui */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.5;
  /* Ajuste a opacidade conforme necessário */
}

/* Container do conteúdo (texto + imagem) */
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

/* Container do texto */
.hero-text {
  flex: 0.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Centraliza os itens horizontalmente */
}

/* Container da imagem */
.hero-image {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo da imagem */
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 1;
}

/* Estilo do título principal */
.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  margin-bottom: 0rem;
  /* Espaçamento ajustável */
  color: #ffffff;
  text-align: left;
  line-height: 1.2;
}

/* Estilo do subtítulo */
.hero-text h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  /* Espaçamento ajustável */
  display: block;
  justify-content: right;
  min-height: 3.5rem;
  /* Altura fixa para evitar saltos */
  color: #E7E7E7;
  justify-content: flex-start;
}

/* Container dos botões */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Espaçamento entre botões */
  margin-top: 2rem;
  /* Espaçamento acima dos botões */
  width: 100%;
  max-width: 300px;
}

/* Estilo do botão primário */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FB7E1B;
  color: #191919;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #FB7E1B;
  width: 100%;
  text-align: center;
}

/* Efeito hover do botão primário */
.cta-button:hover {
  background-color: #e7e7e7;
  border: 2px solid #e7e7e7;
}

/* Estilo do botão secundário */
.cta-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 2px solid #FB7E1B;
  color: #FB7E1B;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

/* Efeito hover do botão secundário */
.cta-button-secondary:hover {
  background-color: transparent;
  border: 2px solid #e7e7e7;
  color: #e7e7e7;
}

/* Texto animado */
#typing-text {
  color: #e7e7e7;
  min-height: 3.5rem;
  /* Mantém altura consistente */
  display: inline-block;
  align-items: self-end;
  bottom: 2px;
  text-align: left;
  /* Garante que o texto fique à esquerda */

}

/* Cursor piscante */
.cursor {
  animation: blink 0.7s infinite;
  margin-left: 4px;
}

/* =================================================== */
/* RESPONSIVIDADE - MOBILE */
/* =================================================== */
@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    /* Espaço no topo ajustável */
    min-height: auto;
    padding-bottom: 0px;
  }

  .hero-content {
    flex-direction: column;
    gap: 3rem;
    /* Espaço entre imagem e texto */
  }

  .hero-text {
    order: 2;
    /* Texto vem depois da imagem */
    padding: 0 10px;
    align-items: center;
    /* Centraliza os itens */
  }

  .hero-image {
    order: 2;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
  }

  .hero-text h1 {
    font-size: 3.6rem;
    /* Tamanho ajustável para mobile */
    margin-bottom: 0rem;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 1.3rem;
    /* Tamanho ajustável para mobile */
    margin-bottom: 0rem;
  }

  .hero-buttons {
    margin-top: 0.5rem;
  }

  .cta-button,
  .cta-button-secondary {
    font-size: 1.1rem;
    /* Tamanho ajustável para mobile */
    padding: 10px 20px;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 3.6rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }
}








/* ================================================================= */
/* SEÇÃO VITRINE - AJUSTE PARA VIEWPORT INTEIRA */
/* ================================================================= */

.image-text-section {
  width: 100vw;
  height: 100vh; /* Ocupa 100% da altura da viewport */
  margin-left: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: slideInFromRight 1s ease-out forwards;
  opacity: 0;
  overflow: hidden; /* Previne scroll indesejado */
}

.container {
  display: contents;
}

.image-wrapper {
  min-height: 100%; /* Ocupa toda a altura */
  background-color: #FB7E1B;
  display: flex; /* Adicionado para melhor controle da imagem */
  align-items: center; /* Centraliza a imagem verticalmente */
  justify-content: center; /* Centraliza a imagem horizontalmente */
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.text-content {
  background-color: #FB7E1B;
  color: #E7E7E7;
  padding: clamp(30px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* Ocupa toda a altura */
}

.section-title-vit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem); /* Tamanho responsivo */
  color: #ffffff;
  text-align: left;
  margin: 0 0 20px 0; /* Espaço abaixo do título */
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-description {
  font-family: 'IBM Plex Sans', monospace;
  font-size: clamp(1.2rem, 2vw, 1.5rem); /* Tamanho responsivo */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  font-weight: 600;
}

.buttons-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Permite que os botões quebrem linha em telas pequenas */
}

.section-button {
  display: inline-flex;
  padding: 12px 30px;
  background-color: #E7E7E7;
  color: #FB7E1B;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.section-button-secondary {
  padding: 12px 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #E7E7E7;
  border: 2px solid #E7E7E7;
}

/* Efeitos hover mantidos */
.section-button:hover,
.section-button:focus {
  background-color: #191919;
  color: #FB7E1B;
}

.section-button-secondary:hover {
  background-color: #FB7E1B;
  color: #191919;
  border-color: #191919;
}

/* =================================================== */
/* RESPONSIVIDADE MELHORADA */
/* =================================================== */

@media (max-width: 768px) {
  .image-text-section {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 60vh; /* Divide a tela em duas partes */
    height: auto;
    min-height: 100vh; /* Garante que ocupe pelo menos a tela toda */
  }

  .image-wrapper {
    grid-row: 1;
    min-height: 100%; /* Ocupa toda a altura da célula do grid */
    aspect-ratio: unset; /* Remove o aspect-ratio fixo */
  }

  .text-content {
    padding: 30px 20px;
    height: auto;
    justify-content: flex-start; /* Alinha conteúdo no topo */
  }

  .section-title-vit {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 1.rem;
    text-align: center;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .buttons-container {
    justify-content: center;
    gap: 15px;
  }

  .section-button,
  .section-button-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%; /* Botões ocupam toda a largura */
    text-align: center;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .image-text-section {
    grid-template-rows: 35vh 65vh; /* Ajusta a proporção */
  }

  .section-title-vit {
    font-size: 3.6rem;
  }

  .section-description {
    font-size: 1rem;
  }
  
}

/* Mantém a animação */
@keyframes slideInFromRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-text-section {
    animation: none;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  /* ... (outros estilos permanecem iguais) ... */

  .section-button,
  .section-button-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%; /* Botões ocupam toda a largura */
    text-align: center; /* Garante que o texto fique centralizado */
    display: flex; /* Adiciona flexbox */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  /* ... (outros estilos permanecem iguais) ... */
  
  .section-button,
  .section-button-secondary {
    /* Mantém as mesmas propriedades de alinhamento */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}






/* ================================================================= */
/* SEÇÃO DE ESTATÍSTICAS - CSS COMENTADO */
/* ================================================================= */

/* Container principal da seção */
.stats-section {
  background-color: #E7E7E7;
  color: #191919;
  width: 100vw;
  height: 100vh; /* Ocupa 100% da altura da viewport */
  margin-left: calc(-50vw + 50%);
  display: flex; /* Adicionado para centralização vertical */
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  padding: 0; /* Remove padding anterior */
  position: relative; /* Para posicionamento absoluto de filhos se necessário */
  overflow: hidden; /* Previne scroll indesejado */
}

/* Container do conteúdo - centralizado */
.stats-container {
  display: flex;
  max-width: 1200px;
  width: 90%; /* Permite algum espaçamento nas laterais */
  margin: 0 auto;
  align-items: center;
  gap: 0;
}

/* Coluna do título (agora com mais destaque) */
.title-column {
  flex: 1.5;
  /* Ocupa 1.5 vezes mais espaço que as outras colunas */
  padding: 0 40px;
  /* Espaçamento interno: 0 topo/baixo, 40px laterais */
}

/* Estilo do título principal */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  /* Fonte personalizada */
  font-size: 5rem;
  /* Tamanho extra grande (agora o elemento mais destacado) */
  color: #000000;
  /* Cor laranja (destaque) */
  text-align: left;
  /* Alinhado à direita (desktop) */
  margin: 0;
  /* Remove margens padrão */
  line-height: 1;
  /* Espaçamento entre linhas reduzido */
  letter-spacing: 3px;
  /* Espaçamento entre letras aumentado */
  text-transform: uppercase;
  /* Transforma em maiúsculas */
}

/* Colunas das estatísticas */
.stat-column {
  flex: 1;
  /* Ocupa 1 parte do espaço disponível */
  padding: 0 30px;
  /* Espaçamento interno: 0 topo/baixo, 30px laterais */
}

/* Divisor entre colunas */
.divider {
  width: 3px;
  /* Largura fina */
  height: 300px;
  /* Altura maior que antes */
  background-color: #191919;
  /* Cor laranja */
  margin: 0 0px;
  /* Espaçamento externo: 0 topo/baixo, 20px laterais */
}

/* Estilo dos números percentuais */
.stat-percent {
  font-family: 'Bebas Neue', sans-serif;
  /* Fonte personalizada (igual ao título) */
  font-size: 7rem;
  /* Tamanho grande (aumentado) */
  color: #FB7E1B;
  /* Cor laranja */
  margin-bottom: 15px;
  /* Espaço abaixo do número */
}

/* Estilo do texto das estatísticas */
.stat-text {
  font-family: 'IBM Plex Sans', monospace;
  /* Fonte monoespaçada */
  font-size: x-large;
  /* Tamanho legível (aumentado) */
  line-height: 1.6;
  /* Espaçamento entre linhas aumentado */
  font-weight: 600;
}

/* NOVO BOTÃO SECUNDÁRIO */
.section-button-secondary-data {
  /* Estilo base similar ao original */
  padding: 12px 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;

  /* Estilo diferente */
  background-color: transparent;
  /* Fundo transparente */
  color: #191919;
  /* Texto laranja */
  border: 2px solid #191919;
  /* Borda laranja */
}

/* Efeitos hover */
.section-button-secondary-data:hover {
  background-color: transparent;
  /* Fundo laranja */
  color: #FB7E1B;
  border-color: #FB7E1B;
  /* Texto branco */
  transform: translateY(-2px);
  /* Efeito de levantar */
}

/* Responsivo: empilha em mobile */
@media (max-width: 768px) {

  .section-button-secondary-data {
    padding: 10px 20px;
    /* Reduz um pouco no mobile */
  }
    .section-title {
    font-size: 3.6rem;
    /* Título ainda menor */
  }
    .section-button-secondary-data {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%; /* Botões ocupam toda a largura */
    text-align: center;
  }
}

/* RESPONSIVIDADE - TELAS MENORES QUE 992px */
@media (max-width: 992px) {
  .section-title {
    font-size: 3.6rem;
    /* Reduz um pouco o tamanho do título */
  }
}

/* RESPONSIVIDADE - TABLETS (768px) */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    /* Empilha os itens verticalmente */
  }

  .section-title {
    font-size: 3.6rem;
    /* Título menor */
    text-align: center;
    /* Centraliza o texto */
    margin-bottom: 30px;
    /* Espaço abaixo do título */
  }

  .divider {
    width: 80%;
    /* Largura maior (horizontal agora) */
    height: 2px;
    /* Altura reduzida */
    margin: 30px auto;
    /* Espaçamento vertical e centralizado */
  }

  .stat-column {
    padding: 20px 0;
    /* Espaçamento interno: 20px topo/baixo, 0 laterais */
    text-align: center;
    /* Centraliza o texto */
  }

  .stat-percent {
    font-size: 3rem;
    /* Percentual um pouco menor */
  }
  
}

/* RESPONSIVIDADE - CELULARES (480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 3.6rem;
    /* Título ainda menor */
  }

  .stat-percent {
    font-size: 3rem;
    /* Percentual menor para celulares */
  }  .section-button-secondary-data {
    /* Mantém as mesmas propriedades de alinhamento */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* Ajustes responsivos - mantém os mesmos que você já tem */
@media (max-width: 768px) {
  .stats-section {
    height: auto; /* Em mobile, volta a altura automática */
    min-height: 100vh; /* Garante que ocupe pelo menos a tela toda */
    padding: 60px 0; /* Adiciona algum espaçamento vertical */
  }
    .section-title {
    font-size: 3.6rem;
    /* Título ainda menor */

  }.section-button-secondary-data {
    /* Mantém as mesmas propriedades de alinhamento */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
    .section-button-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%; /* Botões ocupam toda a largura */
    text-align: center; /* Garante que o texto fique centralizado */
    display: flex; /* Adiciona flexbox */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
  }
  /* Mantém todos os outros ajustes de responsividade que você já tinha */
  .stat-text {
  font-family: 'IBM Plex Sans', monospace;
  /* Fonte monoespaçada */
  font-size: 1rem;
  /* Tamanho legível (aumentado) */
  line-height: 1.6;
  /* Espaçamento entre linhas aumentado */
  font-weight: 600;
}
}








/* ========================================================================================================
                                                                                                  SOLUÇÕES
=========================================================================================================*/
/* Estilo da seção de soluções */
.solutions-section {
  background-color: transparent;
  padding: 80px 20px;
  color: #E7E7E7;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-header {
  text-align: end;
  margin-bottom: 15px;
}

.section-title-sol {
  text-align: end;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #e7e7e7;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

.solution-item {
  padding: 0 20px 30px;
  position: relative;
}

.solution-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #FB7E1B;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: start;
}

.solution-subtitle {
  font-family: 'IBM Plex Sans', monospace;
  font-size: 1.1rem;
  color: #E7E7E7;
  margin-bottom: 5px;
  font-weight: 600;
}

.solution-text {
  font-family: 'IBM Plex Sans', monospace;
  font-size: x-large;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 15px;
}

.horizontal-divider {
  height: 1px;
  background-color: #FB7E1B;
  margin: 40px 0;
  width: 100%;
}

.solution-divider {
  display: none;
  /* Removido para manter apenas as linhas horizontais */
}

.solutions-cta {
  text-align: center;
  margin-top: 60px;
}

/* NOVO BOTÃO SECUNDÁRIO */
.section-button-secondary-solu {
  /* Estilo base similar ao original */
  padding: 12px 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;

  /* Estilo diferente */
  background-color: transparent;
  /* Fundo transparente */
  color: #E7E7E7;
  /* Texto laranja */
  border: 2px solid #E7E7E7;
  /* Borda laranja */
}

/* Efeitos hover */
.section-button-secondary-solu:hover {
  background-color: transparent;
  /* Fundo laranja */
  color: #FB7E1B;
  border-color: #FB7E1B;
  /* Texto branco */
  transform: translateY(-2px);
  /* Efeito de levantar */
}

/* Responsivo: empilha em mobile */
@media (max-width: 768px) {

  .section-button-secondary-solu {
    padding: 10px 10px;
    /* Reduz um pouco no mobile */
  }
  .solutions-header {
  margin-bottom: 0px;
}

  .solution-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.6rem;
    color: #FB7E1B;
    margin-bottom: 0px;
    text-transform: uppercase;
    text-align: center;
  }

  .solution-subtitle {
    font-family: 'IBM Plex Sans', monospace;
    font-size: 1.5rem;
    color: #E7E7E7;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: center;
  }

  .solution-text {
    font-family: 'IBM Plex Sans', monospace;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
  }

  .horizontal-divider {
    background-color: transparent;
    margin: 0;
    width: 100%;
    margin-top: 100px;
  }

  .solutions-header {
    text-align: center;
        font-size: 3.6rem;
    margin-bottom: 0px;
  }

  .section-button-secondary-solu {
    /* Estilo base similar ao original */
    padding: 12px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;

    /* Estilo diferente */
    background-color: transparent;
    /* Fundo transparente */
    color: transparent;
    /* Texto laranja */
    border: 2px solid transparent;
    /* Borda laranja */
  }

  .section-title-sol {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: -1000; !important
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .solution-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 3.6rem;
        margin-bottom: 0px;
  }

  .solution-title {
    font-size: 2rem;
  }

  .horizontal-divider {
    margin: 0 0;
  }

  .section-title-sol {
    text-align: center
        font-size: 3.6rem;
            margin-bottom: -110px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 3.6rem;
    letter-spacing: 3px;
        margin-bottom: 0px;
  }

  .section-title-sol {
    text-align: center;
        font-size: 3.6rem;
            margin-bottom: -110px;
  }
}






























/* ========================================================================================================
                                                                                            BUSINES SECTION
=========================================================================================================*/

/* Container principal da seção */
.business-section {
  opacity: 0;
  transform: translateY(20px);
  /* Desloca levemente para baixo */
  transition: opacity 0.6s ease-out, transform 3s ease-out;
  width: 100%;
  /* Largura total da tela */
  min-height: 10vh;
  /* Altura mínima de 100% da viewport (altura da tela) */
  display: flex;
  /* Ativa o layout flexbox */
  align-items: center;
  /* Centraliza verticalmente */
  justify-content: center;
  /* Centraliza horizontalmente */
  background-color: transparent;
  /* Fundo transparente */
  position: relative;
  /* Permite controlar o z-index */
  z-index: 1;
  /* Garante que fique acima do fundo de partículas */

  /* CONTROLE DE ESPAÇAMENTO VERTICAL (acima/abaixo) */
  padding-top: 8px;
  /* Espaço acima do conteúdo */
  padding-bottom: 0px;
  /* Espaço abaixo do conteúdo */
  /* Ajuste esses valores conforme necessário */
}

.business-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container do conteúdo central */
.business-content {
  text-align: center;
  /* Alinhamento central do texto */
  padding: 0 0px;
  /* Espaçamento lateral interno (esquerda/direita) */

  /* CONTROLE ADICIONAL DE ESPAÇAMENTO (opcional) */
  margin-top: 0;
  /* Espaço extra acima (se necessário) */
  margin-bottom: 0;
  /* Espaço extra abaixo (se necessário) */
}

/* Estilo do título principal */
.business-title {
  font-family: 'Bebas Neue', sans-serif;
  /* Fonte especificada */
  font-size: 13rem;
  /* Tamanho da fonte - ajuste conforme necessário */
  color: #ffffff;
  /* Cor do texto (cinza claro) */
  letter-spacing: 0px;
  /* Espaçamento entre caracteres */
  line-height: 1;
  /* Altura da linha (evita espaçamento vertical entre linhas) */
  text-transform: uppercase;
  /* Transforma texto em maiúsculas */
  margin: 0;
  /* Remove margens padrão */

  /* CONTROLE DE ESPAÇAMENTO INTERNO DO TÍTULO */
  padding: 0px 0;
  /* Espaço interno acima/abaixo do texto */
}

/* Estilo da palavra "WEB" */
.web-text {
  color: #FB7E1B;
  /* Cor laranja */
  font-family: 'Bebas Neue', sans-serif;
  /* Mantém a mesma fonte */

  /* CONTROLE DE ESPAÇAMENTO ESPECÍFICO PARA "WEB" */
  margin-left: 0px;
  /* Espaço entre "NEGÓCIO" e "WEB" */
}

/* Media query para tablets */
@media (max-width: 768px) {
  .business-title {
    font-size: 8rem;
    /* Reduz tamanho da fonte */
    letter-spacing: 10px;
    /* Mantém ou ajusta espaçamento entre letras */

    /* AJUSTE DE ESPAÇAMENTO PARA TABLET */
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /* Ajuste opcional do espaçamento da seção em tablets */
  .business-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/* Media query para celulares */
@media (max-width: 480px) {
  .business-title {
    font-size: 7rem;
    /* Tamanho menor para celulares */
    letter-spacing: 3px;
    /* Espaçamento reduzido entre letras */

    /* AJUSTE DE ESPAÇAMENTO PARA CELULAR */
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /* Ajuste opcional do espaçamento da seção em celulares */
  .business-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .web-text {
    margin-left: 8px;
    /* Espaço menor entre palavras em celulares */
  }
}













/* ========================================================================================================
                                                                                            DEPOIMENTOS
=========================================================================================================*/















/* ESTILOS PARA A SEÇÃO DE DEPOIMENTOS */
.testimonials-section {
  background: #000000d3;
  padding: 60px 0;
  color: #E7E7E7;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.section-title-dep {
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 4rem;
  color: #e7e7e7;
  position: relative;
  display: inline-block;
}

.section-title-dep::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FB7E1B;
  border-radius: 2px;
}

.testimonial-carousel {
  position: relative;
  min-height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transform: translateX(50px) scale(0.95);
  z-index: 1;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
  position: relative;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(30, 30, 30, 0);
  border-radius: 15px;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonial-rating {
  color: #FB7E1B;
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  color: #FB7E1B;
  font-size: 2rem;
  font-family: serif;
  position: absolute;
  opacity: 0.5;
}

.testimonial-text::before {
  top: -15px;
  left: 0;
}

.testimonial-text::after {
  bottom: -25px;
  right: 0;
}

.testimonial-author-info {
  margin-top: 30px;
}

.testimonial-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FB7E1B;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.testimonial-role {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  color: #a0a0a0;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 20px;
    cursor: pointer;
}

.carousel-prev,
.carousel-next {
  background: transparent;
  border: none;
  color: #FB7E1B;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;  cursor: pointer;
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: #FB7E1B;
  transform: scale(1.1);  cursor: pointer;
}

.carousel-prev:focus,
.carousel-next:focus {
  outline: none;  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 10px;  cursor: pointer;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;  cursor: pointer;
}

.carousel-dot.active {
  background-color: #FB7E1B;
  transform: scale(1.3);  cursor: pointer;
}

.carousel-dot:hover:not(.active) {
  background-color: #777;  cursor: pointer;
}

.section-button-secondary-solu {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #FB7E1B;
  border: 2px solid #FB7E1B;
  border-radius: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 30px;  cursor: pointer;
}

.section-button-secondary-solu:hover {
  background-color: #FB7E1B;
  color: transparent;
  transform: translateY(-3px);  cursor: pointer;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .section-title-dep {
    font-size: 3rem;
  }
  
  .testimonial-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-title-dep {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .testimonial-text {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .testimonial-author {
    font-size: 1.5rem;
  }
  
  .testimonial-content {
    padding: 25px 15px;
  }
  
  .carousel-controls {
    margin: 30px 0;
  }
}

@media (max-width: 576px) {
  .section-title-dep {
    font-size: 2rem;
  }
  
  .testimonial-rating {
    font-size: 1.2rem;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
  }
}










































/* ========================================================================================================
                                                                                                  INSTAGRAM
=========================================================================================================*/


/* Main section container - stretches full viewport width */
.instagram-section {
  padding: 60px 0;
  /* Vertical padding only (top/bottom) */
  text-align: center;
  /* Centers all child elements horizontally */
  width: 100vw;
  /* Full viewport width */
  margin-left: calc(-50vw + 50%);
  /* Special technique to stretch beyond container */
  background-color: #E7E7E7;
  /* Light gray background */
  box-sizing: border-box;
  /* Includes padding in width calculation */
  overflow: hidden;
  /* Hides any overflowing content */
}

/* Inner content container - limits max width */
.instagram-container {
  max-width: 1200px;
  /* Maximum content width */
  margin: 0 auto;
  /* Centers container horizontally */
  padding: 0 00px;
  /* Side padding for mobile */
}

/* Profile image wrapper */
.instagram-profile {
  margin-bottom: 20px;
  /* Space below profile image */
}

/* Circular profile image styling */
.profile-image {
  width: 150px;
  /* Fixed width */
  height: 150px;
  /* Fixed height (creates square) */
  border-radius: 50%;
  /* Makes image circular */
  object-fit: cover;
  /* Ensures image fills circle without distortion */
  border: 5px solid #FB7E1B;
  /* Orange border */
  transition: transform 0.3s ease;
  /* Transição suave para a imagem */
}

.profile-image {
  width: 140px;
  /* Reduzido para compensar a borda */
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #E7E7E7;
  /* Borda branca interna */
  display: block;
}

.instagram-story-border {
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  /* Adiciona transição suave */
  background: linear-gradient(45deg,
      #ffc600 0%,
      #ffc600 25%,
      #dc2743 50%,
      #d300c5 75%,
      #d300c5 100%);
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite;
}

.instagram-story-border:hover {
  transform: scale(1.1);
  /* Aumenta 10% */
}

.instagram-story-border:hover .profile-image {
  transform: scale(0.95);
  /* Pequeno zoom inverso para criar profundidade */
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Instagram link styling */
.instagram-link {
  display: inline-block;
  /* Allows for transforms and padding */
  text-decoration: none;
  /* Removes default underline */
  position: relative;
  /* For absolute positioning of pseudo-elements */
}

/* Instagram username/handle styling */
.instagram-handle {
  font-family: 'Bebas Neue', sans-serif;
  /* Custom font */
  font-size: 4rem;
  /* Large desktop size */
  color: #191919;
  /* Black text */
  letter-spacing: 2px;
  /* Increased spacing between letters */
  position: relative;
  /* For child positioning */
  transition: color 0.3s ease;
  /* Smooth color transition */
}

/* Instagram tagline/subtitle */
.instagram-tagline {
  font-family: 'Bebas Neue', sans-serif;
  /* Matches handle font */
  font-size: 2rem;
  /* Smaller than handle */
  color: #FB7E1B;
  /* Orange text */
  display: block;
  /* Forces line break */
  margin-top: 10px;
  /* Space above element */
  letter-spacing: 1px;
  /* Less spacing than handle */
  transition: color 0.3s ease;
  /* Smooth color transition */
}

/* Handle hover effect - maintains black color */
.instagram-link:hover .instagram-handle {
  color: #191919;
  /* Remains black on hover */
}

/* Tagline hover effect - changes to white */
.instagram-link:hover .instagram-tagline {
  color: #e7e7e7;
  /* Changes to white on hover */
}

/* Animated underline effect */
.instagram-link::after {
  content: '';
  /* Required for pseudo-element */
  position: absolute;
  /* Positions relative to link */
  width: 0;
  /* Starts invisible */
  height: 2px;
  /* Underline thickness */
  bottom: -5px;
  /* Positions below text */
  right: 0;
  /* Starts from right */
  background-color: #FB7E1B;
  /* Orange underline */
  transition: width 0.3s ease;
  /* Smooth expansion */
}

/* Underline hover effect - expands from right to left */
.instagram-link:hover::after {
  width: 100%;
  /* Full width */
  left: 0;
  /* Anchors to left */
  right: auto;
  /* Resets right position */
}

/* Instagram button styling */
.instagram-button {
  display: inline-block;
  /* Allows padding and transforms */
  padding: 12px 30px;
  /* Button padding */
  background-color: #FB7E1B;
  /* Orange background */
  color: #e7e7e7;
  /* Light text */
  text-decoration: none;
  /* Removes underline */
  font-family: 'Bebas Neue', sans-serif;
  /* Matches other text */
  font-size: 1.2rem;
  /* Readable size */
  border-radius: 5px;
  /* Rounded corners */
  transition: all 0.3s ease;
  /* Smooth hover effects */
  margin-top: 20px;
  /* Space above button */
}

/* Button hover effects */
.instagram-button:hover {
  background-color: #191919;
  /* Changes to black */
  color: white;
  /* White text */
}

/* ================================================== */
/* RESPONSIVE ADJUSTMENTS */
/* ================================================== */

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
  .instagram-handle {
    font-size: 3rem;
    /* Smaller handle */
  }

  .instagram-tagline {
    font-size: 1.5rem;
    /* Smaller tagline */
  }

  .instagram-section {
    padding: 40px 0;
    /* Less vertical padding */
  }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
  .instagram-handle {
    font-size: 2rem;
    /* Even smaller handle */
  }

  .instagram-tagline {
    font-size: 1.2rem;
    /* Even smaller tagline */
  }

  .instagram-button {
    padding: 10px 20px;
    /* More compact button */
    font-size: 1rem;
    /* Smaller text */
  }
}



















/* ========================================================================================================
                                                                                                  E-MAIL
=========================================================================================================*/

.contact-section {
  background-color: #191919;
  padding: 60px 20px;
  font-family: 'Bebas Neue', sans-serif;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* Técnica para esticar além do container pai */
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-text h2 {
  font-size: larger;
  font-family: 'Bebas Neue', sans-serif;
  /* Fonte personalizada */
  font-size: 5rem;
  /* Tamanho extra grande (agora o elemento mais destacado) */
  color: #ffffff;
  /* Cor laranja (destaque) */
  text-align: left;
  /* Alinhado à direita (desktop) */
  margin: 0;
  /* Remove margens padrão */
  line-height: 1;
  /* Espaçamento entre linhas reduzido */
  letter-spacing: 3px;
  /* Espaçamento entre letras aumentado */
  text-transform: uppercase;
  /* Transforma em maiúsculas */
}

.contact-text p {
  font-size: 1.1rem;
  font-family: 'IBM Plex Sans';
  color: #e7e7e7;
  line-height: 1.6;
}

.contact-form {
  background: #e7e7e7;
  padding: 30px;
  border-radius: 9px;
  font-family: 'IBM Plex Sans';
}

.form-group {
  margin-bottom: 20px;
  font-family: 'IBM Plex Sans';
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 4px solid #191919;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'IBM Plex Sans';
  background-color: #e7e7e7;
  color: #191919ed;
  transition: all 0.3s ease;
  outline: none; /* Remove o outline padrão para personalizar */
}

/* Efeito Hover */
.form-group input:hover,
.form-group textarea:hover {
  border-color: #FB7E1B;
}

/* Efeito Focus (persistente) */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #FB7E1B;
  background-color: #25252512;
}

/* Placeholder estilizado */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #191919ad;
  opacity: 1;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Estado ativo (enquanto clica) */
.form-group input:active,
.form-group textarea:active {
  border-color: #FB7E1B;
}

.submit-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FB7E1B;
  color: #e7e7e7;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #FB7E1B;
  width: 100%;
  text-align: center;
}

.submit-btn:hover {
  background-color: #191919;
  color: #e7e7e7;
  border: 2px solid #191919;
}

.form-footer {
  margin-top: 15px;
  text-align: center;
  font-size: 0.8rem;
  color: #191919;
}

.cloudflare-notice {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-text h2 {
    font-size: 2rem;
  }
}

















/* =================================================== */
/* RESPONSIVIDADE - MOBILE */
/* =================================================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-right {
    align-items: center; /* Centraliza verticalmente */
    text-align: center; /* Centraliza o texto horizontalmente */
    justify-content: center; /* Garante centralização horizontal do conteúdo flex */
    width: 100%; /* Garante que ocupe toda a largura disponível */
  }

  .logo-social-wrapper {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

/* =================================================== */
/* ESTILOS GERAIS DO FOOTER */
/* =================================================== */
.site-footer {
  background-color: #191919;
  color: #E7E7E7;
  padding: 3rem 0;
  font-family: 'IBM Plex Sans', monospace;
  position: relative;
  z-index: 10;
  width: 100vw;
  /* Ocupa toda a largura da viewport */
  margin-left: calc(-50vw + 50%);
  /* Técnica para esticar além do container pai */
  border-top: 7px solid #FB7E1B;
  /* Borda superior laranja */
  border-bottom: 0px solid #FB7E1B;
  /* Borda inferior laranja */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

/* =================================================== */
/* SEÇÃO ESQUERDA - LOGO E REDES SOCIAIS */
/* =================================================== */
.footer-left {
  flex: 1;
  position: relative;
}

.logo-social-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Espaço entre ícones e logo */
}

.social-links {
  display: flex;
  flex-direction: column;
  /* Empilha os ícones verticalmente */
  gap: 7px;
  /* Espaço entre os ícones */
}

.social-icon {
  color: #191919;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10%;
  background-color: #FB7E1B;
}

.social-icon:hover {
  color: #191919;
  background-color: #e7e7e7;
  text-decoration: none !important;
  /* Remove sublinhado */
}

.action-button,
.send-button {
  text-decoration: none !important;
  /* Remove sublinhado */
}

.footer-logo {
  height: 132px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Remove sublinhado dos ícones sociais e botões */
.social-icon,
.action-button,
.send-button {
  text-decoration: none !important;
}

/* Opcional: garante que não terá sublinhado no hover */
.social-icon:hover,
.action-button:hover,
.send-button:hover {
  text-decoration: none !important;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* =================================================== */
/* RESPONSIVIDADE - MOBILE */
/* =================================================== */
@media (max-width: 768px) {
  .footer-left {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    width: 100%;
  }

  .logo-social-wrapper {
    flex-direction: column;
    /* Empilha logo e ícones verticalmente */
    align-items: center;
    /* Centraliza os itens */
    gap: 20px;
    /* Espaço entre logo e ícones */
  }

  .social-links {
    flex-direction: row;
    /* Alinha ícones horizontalmente no mobile */
    gap: 20px;
    /* Espaço entre ícones */
  }

  .footer-logo {
    height: 150px;
    /* Tamanho reduzido para mobile */
  }
}

/* =================================================== */
/* SEÇÃO DIREITA - CONTEÚDO */
/* =================================================== */
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* REMOVIDO O GAP PARA ELIMINAR ESPAÇAMENTO VERTICAL */
  /* Os itens agora estão colados verticalmente conforme solicitado */
}

.action-button {
  background-color: #FB7E1B;
  color: #191919;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* REMOVIDO O TRANSFORM NO HOVER PARA EVITAR MOVIMENTAÇÃO */
}

.action-button:hover {
  /* REMOVIDO O TRANSFORM PARA EVITAR MOVIMENTAÇÃO */
  background-color: #e7e7e7;
  color: #191919;
}

.language-selector {
  margin: 0;
  /* REMOVIDO O ESPAÇAMENTO VERTICAL */
}

.copyright {
  text-align: right;
  width: 100%;
  margin: 0;
  /* REMOVIDO O ESPAÇAMENTO VERTICAL */
}

.copyright p {
  margin: 0;
  /* REMOVIDO O ESPAÇAMENTO VERTICAL */
}

.footer-links {
  margin: 0;
  /* REMOVIDO O ESPAÇAMENTO VERTICAL */
}

.footer-links a {
  color: #E7E7E7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FB7E1B;
}

/* =================================================== */
/* OVERLAY TRABALHE CONOSCO */
/* =================================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  background-color: transparent;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 1px solid transparent;
  font-size: 1.5rem;
}

.close-overlay {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: transparent;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-overlay:hover {
  color: #FB7E1B;
}

.send-button {
  display: inline-block;
  margin-top: 1rem;
}

/* =================================================== */
/* AJUSTES PARA O GOOGLE TRANSLATE */
/* =================================================== */
.goog-te-gadget {
  color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid #FB7E1B;
  background-color: #191919;
  color: #E7E7E7;
  font-family: 'IBM Plex Sans', monospace;
  cursor: pointer;
}

/* Previne redirecionamento ao topo ao selecionar idioma */
.goog-te-combo {
  height: auto !important;
}

/* =================================================== */
/* RESPONSIVIDADE */
/* =================================================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .logo-social-wrapper {
    justify-content: center;
  }

  .copyright {
    text-align: center;
    
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 80px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .action-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}