/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background-color: #00BFFF; /* Azul Capri */
  color: #fff;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}



  /* Banner CTA - Movido para cta-banner.css */
  /* Todos os estilos do CTA banner agora estão no arquivo dedicado */

/* Seção de Contadores */
.contadores-section {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  padding: 4rem 2rem;
  text-align: center;
}

.contadores-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contador-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.contador-item:hover {
  transform: translateY(-5px);
}

.contador-numero {
  font-size: 3rem;
  font-weight: 800;
  color: #FFDD00;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contador-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
}

/* Seção de Depoimentos (MOVIDO PARA cta-banner.css) */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #007bff;
  position: relative;
  z-index: 1;
}

/* Depoimentos container (MOVIDO PARA cta-banner.css) */

/* Wrapper para o carrossel (MOVIDO PARA cta-banner.css) */

/* Depoimento card (MOVIDO PARA cta-banner.css) */

/* Carrossel de Depoimentos (MOVIDO PARA cta-banner.css) */

/* Seção FAQ */
.faq-section {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  padding: 4rem 2rem;
  color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  color: #FFDD00;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding: 1.5rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 1rem;
  }
  
  .faq-title {
    font-size: 1.8rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Botão WhatsApp Fixo */
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Distância da parte inferior */
  right: 20px; /* Distância da lateral direita */
  width: 60px; /* Largura do botão */
  height: 60px; /* Altura do botão */
  z-index: 9998; /* Garante que fique acima de outros elementos */
  border-radius: 50%; /* Deixa o botão redondo */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra para destaque */
  transition: all 0.3s ease;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Deixa a imagem redonda */
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-button:hover img {
  transform: scale(1.05);
}

/* Botão WhatsApp no Footer */
.whatsapp-footer {
  display: inline-block;
  margin: 1rem auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.whatsapp-footer img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.whatsapp-footer:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
  .contadores-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .contador-numero {
    font-size: 2rem;
  }
  
  /* Depoimentos container movido para cta-banner.css */
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Ajustes para tabelas em mobile */
  .tabela-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .tabela-container > div {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
  }
  
  .tabela-custom.destaque {
    min-width: 360px !important;
    max-width: 360px !important;
  }
  
  .tabela-custom.destaque th,
  .tabela-custom.destaque td {
    font-size: 1rem;
    padding: 0.7rem 0.3rem;
  }
}

@media (max-width: 480px) {
  .contadores-container {
    grid-template-columns: 1fr;
  }
  
  /* Ajustes para tabelas em telas muito pequenas */
  .tabela-container {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .tabela-container > div {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
  }
  
  .tabela-custom.destaque {
    min-width: 300px !important;
    max-width: 300px !important;
  }
  
  .tabela-custom.destaque th,
  .tabela-custom.destaque td {
    font-size: 0.9rem;
    padding: 0.5rem 0.2rem;
  }
  
  .tabela-custom.destaque .rs {
    font-size: 0.8rem;
  }
}

/* Header fixo no topo */
header {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  border-bottom: 3px solid #00BFFF;
}
.frase-efeito {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  margin: 6rem 0 1rem; /* Adiciona espaçamento acima e abaixo */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.frase-efeito .porto-consorcio {
  margin-top: 1rem; /* Espaçamento acima do texto */
  font-size: 2.5rem; /* Tamanho do texto */
  font-weight: bold; /* Negrito */
  color: #ffdd00; /* Cor amarela */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Sombra no texto */
}
.frase-efeito .porto-consorcio .destaque {
  font-style: italic; /* Texto em itálico */
}

.bem-vindo {
  background-color: #007bff; /* Azul Porto */
  color: white;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  width: 80%; /* Ajusta a largura */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
}

.bem-vindo h1 {
  font-size: 2rem;
  margin: 0;
  line-height: 1.5;
}

.frase-efeito .destaque {
  font-size: 3.5rem;
  color: #ffdd00;
  font-style: italic;
}
.icone-frase {
  width: 50px; /* Reduz o tamanho do ícone */
  height: auto; /* Mantém a proporção */
  vertical-align: middle; /* Alinha o ícone ao texto */
  margin: 0 0.3rem; /* Espaçamento ao redor do ícone */
}

/* Navbar styles */

.navbar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.galeria-imagens h2 {
  text-align: center; /* Centraliza o texto */
  font-size: 2rem; /* Ajusta o tamanho da fonte */
  margin-bottom: 1rem; /* Adiciona espaçamento abaixo do título */
  color: #333; /* Define a cor do texto */
}
.campanha {
  color: #1c9ec5; /* Cor de destaque (laranja) */
  font-weight: bold; /* Deixa o texto em negrito */
  font-size: 2rem; /* Aumenta o tamanho da fonte */
  text-transform: uppercase; /* Deixa o texto em letras maiúsculas */
  background-color: #fffff5; /* Adiciona um fundo amarelo claro */
  padding: 0.2rem 0.5rem; /* Adiciona espaçamento interno */
  border-radius: 5px; /* Arredonda os cantos */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adiciona uma sombra */
} 

.nav-btn {
  background: none;
  border: none;
  color: #222; /* Cor do texto */
  font-size: 1.1rem;
  width: auto;
  padding: 0.3rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-btn:hover,
.nav-btn:focus {
  background: #f0f0f0; /* Fundo cinza claro ao passar o mouse */
  outline: none;
}



/* Espaço para o header fixo */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px; /* Espaço reduzido para o header fixo */
}
.destaque-texto {
  font-size: 3rem; /* Aumenta o tamanho da fonte */
  font-weight: bold; /* Deixa o texto em negrito */
  color: #007ACC; /* Escolha uma cor de destaque */
  text-align: center; /* Centraliza o texto */
  margin-top: 1rem; /* Adiciona espaço acima do texto */
}

/* Lado Esquerdo */
.hero .left {
  width: 80%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;    /* 10% da altura da viewport */
  padding-bottom: 2vh; /* 10% da altura da viewport */
}
.area-branca {
  width: 100vw;
  min-height: 20vh; /* 10% em cima + 10% embaixo = 20% */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabela-titulo {
  font-size: 1.3rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: normal;
  color: #222;
  text-align: center;
  margin-bottom: 0.5rem;
}
.subtitulo-tabela {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.titulo-tabela-grande {
  font-size: 2.2rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 1px;
}
.icone-tabela {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.planos-label {
  font-size: 1rem;
  color: #00BFFF;
  font-weight: 600;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.tabelas-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: flex-start; /* Alinha no topo */
}

.tabela-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.tabela-container > div {
  width: 420px !important; /* Largura fixa absoluta */
  min-width: 420px !important;
  max-width: 420px !important;
  flex: none !important; /* Remove flexibilidade */
  display: inline-block; /* Força largura fixa */
}

.aviso {
  text-align: center;
  font-size: 0.875rem; /* Tamanho pequeno */
  color: #555; /* Cor discreta */
  margin-top: 1rem; /* Espaçamento acima */
  font-style: italic; /* Texto em itálico */
}
.tabela-custom.destaque {
  border-collapse: separate;
  border-spacing: 0;
  width: 100% !important;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0001;
  margin: 1.5rem auto;
  font-family: 'Inter', Arial, sans-serif;
  table-layout: fixed !important; /* Força largura fixa das colunas */
  min-width: 400px !important;
  max-width: 400px !important;
}
.tabela-custom.destaque th {
  background: #00BFFF;
  color: #fff;
  font-size: 1.35rem;
  font-weight: bold;
  padding: 0.9rem 0.5rem;
  text-align: center;
  border: none;
  width: 33.33% !important; /* Largura igual para cada coluna */
}
.tabela-custom.destaque td {
  font-size: 1.25rem;
  color: #222;
  text-align: center;
  padding: 0.9rem 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  border-right: none;
  border-left: none;
  border-top: none;
  width: 33.33% !important; /* Largura igual para cada coluna */
  word-wrap: break-word; /* Quebra palavras longas */
  overflow-wrap: break-word; /* Quebra palavras longas */
}
.tabela-custom.destaque tr:last-child td {
  border-bottom: none;
}
.tabela-custom.destaque .rs {
  font-size: 1rem;
  font-weight: normal;
  color: #222;
}
.tabela-custom.destaque .riscado {
  text-decoration: line-through;
  color: #222;
  font-size: 1.25rem;
}
.tabela-custom.destaque td b {
  font-weight: bold;
  font-size: 1.25rem;
}
.hero .left img {
  width: 520px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.hero .left h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Lado Direito (Card) */
.category-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}
.category-buttons .ou {
  margin: 0 0.5rem;
  font-weight: bold;
  color: #00BFFF;
}
.category {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: #eee;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.category.active,
.category:hover {
  background: #00BFFF;
  color: #fff;
}
.hero .right p {
  text-align: center;
  margin-bottom: 0.5rem;
}
.hero .right {
  flex-direction: column;
  align-content: center;
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
}
.hero .right h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.hero .right .highlight {
  display: inline-block;
  background: #00BFFF;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 0.25rem;
}
.toggle {
  display: flex;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
  margin: 1rem 0;
}
.toggle button {
  flex: 1;
  padding: 0.75rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}
.toggle button.active {
  background: #00BFFF;
  color: #fff;
}
.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1.5rem 0;
  width: 100%;
}
.slider-container .value {
  font-size: 2rem;
  font-weight: bold;
}
.slider-container input[type="range"] {
  max-width: 320px;
  width: 100%;
  margin-top: 1rem;
  accent-color: #00BFFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slider-container .scale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.3rem;
  padding: 0;
}
.slider-container .scale span {
  flex: 0 0 auto;
  text-align: left;
  min-width: 70px;
}
.slider-container .scale span:last-child {
  text-align: right;
}
/* Estilo original do botão simular removido - usando versão melhorada acima */
.hero .right .footer-note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.75rem;
  text-align: center;
}

.resultado {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin-left: 2rem;
  margin-bottom: 1rem;
  display: none; /* Esconde inicialmente */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.valor-escolhido {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1.5rem;
}

.voltar {
  background: #00c6ff; /* Azul claro */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.voltar:hover {
  background: #0099cc; /* Azul mais escuro ao passar o mouse */
}

/* Formulário Melhorado */
.form-contato {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 350px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 1rem;
}

.form-header h3 {
  color: #007bff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #00BFFF;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder {
  color: #999;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #007bff;
  font-weight: 500;
}

.benefit-icon {
  font-size: 1rem;
}

/* Botão simular melhorado - versão consolidada */
.hero .right button.simular {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #FC6900, #FF8C00);
  border: none;
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(252, 105, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero .right button.simular::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero .right button.simular:hover::before {
  left: 100%;
}

.hero .right button.simular:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(252, 105, 0, 0.4);
}

.hero .right button.simular:active {
  transform: translateY(-1px);
}

/* Melhorias nos botões de categoria */
.category {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: #f8f9fa;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.5s;
}

.category:hover::before {
  left: 100%;
}

.category.active,
.category:hover {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
}

/* Melhorias no slider */
.slider-container input[type="range"] {
  max-width: 320px;
  width: 100%;
  margin-top: 1rem;
  accent-color: #00BFFF;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 8px;
  border-radius: 5px;
  background: #e0e0e0;
  outline: none;
  transition: all 0.3s ease;
}

.slider-container input[type="range"]:hover {
  accent-color: #007bff;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BFFF, #007bff);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.slider-container .value {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00BFFF, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsividade para formulário */
@media (max-width: 768px) {
  .form-contato {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .form-header h3 {
    font-size: 1.2rem;
  }
  
  .btn-whatsapp {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .hero .right button.simular {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

/* Responsivo - Media query consolidada */
@media (max-width: 600px) {
  .frase-efeito {
    margin-top: 7rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
  }

  .hero .left {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 1rem;
  }

  .hero .left img {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .hero .left h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .hero .right {
    padding: 1rem;
    max-width: 100vw;
    box-shadow: none;
    border-radius: 8px;
  }
}

/* Estilos adicionais para mobile - consolidados na media query acima */
/* Estilo para o Footer */
.footer {
  background-color: #007bff; /* Cor de fundo */
  color: white; /* Cor do texto */
  text-align: center; /* Centraliza o texto */
  padding: 1rem; /* Espaçamento interno */
  font-size: 0.9rem; /* Tamanho da fonte */
  bottom: 0; /* Posiciona na parte inferior */
  left: 0; /* Alinha à esquerda */
  width: 100%; /* Ocupa toda a largura da tela */
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  z-index: 10; /* Garante que fique acima de outros elementos */
}
.content {
  padding-bottom: 3rem; /* Espaço para o footer */
  flex: 1; /* Permite que o conteúdo ocupe o espaço restante */
}

/* Estilo do Modal do Chat */
.chat-modal {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #00BFFF;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.chat-header h3 {
  margin: 0;
  font-size: 1rem;
}

.fechar-chat {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-body {
  padding: 1rem;
}

textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 0.5rem;
  background-color: #00BFFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #007ACC;
}

.resposta-chat {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: #e6f7ff;
  border: 1px solid #b3e5fc;
  border-radius: 4px;
}


/* Aba consorcio */
/* Seção Vantagens */
.vantagens {
  background-color: #00BFFF; /* Fundo azul claro */
  padding: 2rem 1rem;
  text-align: center;
}

.vantagens h2 {
  font-size: 2rem;
  color: #ffffff; /* Texto branco */
  margin-bottom: 2rem;
}

/* Container dos Cartões */
.cartoes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Colunas responsivas */
  gap: 1rem; /* Reduz o espaçamento entre os cartões */
  padding: 2rem;
  justify-content: center; /* Centraliza o grid */
}

/* Estilo dos Cartões */
.cartao {
  background-color: #ffffff; /* Fundo branco */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cartao:hover {
  transform: translateY(-5px); /* Eleva o cartão ao passar o mouse */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra mais forte */
}

.cartao h3 {
  font-size: 1.2rem;
  color: #222222; /* Cor do título */
  margin-bottom: 0.5rem;
}

.cartao p {
  font-size: 0.9rem;
  color: #555555; /* Cor do texto */
  line-height: 1.5;
}

.bloco-de-notas {
  top: 20px; /* Distância do topo */
  right: 20px; /* Alinha no canto extremo direito */
  background-color: #007bff;
  border: 1px solid#007bff;
  padding: 1rem;
  max-width: 300px;
  font-family: Arial, sans-serif;
}

.bloco-de-notas p {
  color: #007bff;
  margin-top: 0;
  font-size: 0.7rem;
}

/* Responsividade */
@media (max-width: 1024px) {
  .cartoes-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
  }
}

@media (max-width: 768px) {
  .cartoes-container {
    grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
  }
}


/* Seção Galeria de Imagens */
.imagens-container {
  display: flex; /* Define layout flexível */
  flex-wrap: wrap; /* Permite que as imagens quebrem para a próxima linha */
  gap: 0.5rem; /* Reduz o espaçamento entre as imagens */
  justify-content: center; /* Centraliza as imagens */
  padding: 1rem; /* Adiciona padding ao container */
}

.imagem {
  flex: 1 1 calc(50% - 0.5rem); /* Define duas imagens por linha com menos espaço */
  max-width: calc(50% - 0.5rem); /* Limita a largura de cada imagem */
  box-sizing: border-box; /* Inclui padding e border no tamanho total */
}

.imagem img {
  width: 100%; /* Faz a imagem ocupar toda a largura do container */
  height: auto; /* Mantém a proporção da imagem */
  max-width: 300px; /* Limita o tamanho máximo da imagem */
  max-height: 400px; /* Limita a altura máxima da imagem */
  object-fit: contain; /* Mantém a proporção sem cortar */
  border-radius: 8px; /* Adiciona bordas arredondadas */
  cursor: pointer; /* Mostra o cursor ao passar o mouse */
  transition: transform 0.2s ease; /* Adiciona animação ao passar o mouse */
}

.imagem img:hover {
  transform: scale(1.05); /* Aumenta levemente ao passar o mouse */
}

.modal {
  display: none; /* Esconde o modal inicialmente */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro com transparência */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.fechar-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}
.seta-esquerda,
.seta-direita {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  user-select: none;
}

.seta-esquerda {
  left: 20px;
}

.seta-direita {
  right: 20px;
}

.seta-esquerda:hover,
.seta-direita:hover {
  color: #00c6ff; /* Cor ao passar o mouse */
}


/* Responsividade */
@media (max-width: 768px) {
  .imagens-container {
    grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
  }
  
  .imagem img {
    max-width: 250px; /* Tamanho menor para mobile */
    max-height: 300px;
  }
}

/* Desktop - Telas grandes */
@media (min-width: 1200px) {
  .imagem {
    flex: 1 1 calc(33.333% - 0.5rem); /* 3 imagens por linha em telas grandes com menos espaço */
    max-width: calc(33.333% - 0.5rem);
  }
  
  .imagem img {
    max-width: 250px; /* Tamanho controlado para desktop */
    max-height: 350px;
  }
}

/* Telas muito grandes */
@media (min-width: 1600px) {
  .imagem img {
    max-width: 280px; /* Tamanho um pouco maior para telas muito grandes */
    max-height: 380px;
  }
}

/* Animações e Efeitos Visuais */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Aplicando animações aos elementos */
.hero .left {
  animation: slideInFromLeft 1s ease-out;
}

.hero .right {
  animation: slideInFromRight 1s ease-out 0.3s both;
}

.frase-efeito {
  animation: float 3s ease-in-out infinite;
}

.hero .left img {
  animation: glow 2s ease-in-out infinite alternate;
}

/* Efeitos hover melhorados */
.tabela-custom.destaque {
  transition: all 0.3s ease;
}

.tabela-custom.destaque:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tabela-custom.destaque tr:hover {
  background: rgba(0, 191, 255, 0.05);
  transform: scale(1.02);
  transition: all 0.2s ease;
}

/* Efeito de loading para botões */
.btn-loading {
  position: relative;
  overflow: hidden;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Efeito de destaque para valores importantes */
.valor-destaque {
  background: linear-gradient(135deg, #FFDD00, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Efeito de scroll suave */
html {
  scroll-behavior: smooth;
}

/* Efeito de parallax sutil */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Efeito de glassmorphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}

/* Efeito de gradiente animado */
.gradient-animated {
  background: linear-gradient(-45deg, #00BFFF, #007bff, #25D366, #128C7E);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Efeito de shake para erros */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Efeito de zoom suave */
.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.05);
}

/* Efeito de rotação 3D */
.rotate-3d {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.rotate-3d:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

/* Efeito de texto digitado */
.typewriter {
  overflow: hidden;
  border-right: 2px solid #00BFFF;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #00BFFF;
  }
}

/* Efeito de destaque para elementos importantes */
.highlight-pulse {
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
  }
}

/* Efeito de scroll progressivo */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00BFFF, #007bff);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Melhorias na responsividade com animações */
@media (max-width: 768px) {
  .hero .left,
  .hero .right {
    animation: fadeInUp 0.8s ease-out;
  }
  
  .frase-efeito {
    animation: none;
  }
  
  .hero .left img {
    animation: none;
  }
}

/* Efeito de destaque para números importantes */
.contador-numero {
  position: relative;
}

.contador-numero::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFDD00, #FFA500);
  animation: expandWidth 2s ease-out 0.5s forwards;
}

@keyframes expandWidth {
  to {
    width: 100%;
  }
}

/* Efeito de hover para cards */
.contador-item,
.faq-item {
  transition: all 0.3s ease;
}

.contador-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Efeito de destaque para botões importantes */
.btn-primary {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

/* Tooltips */
.tooltip {
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  position: absolute;
  z-index: 10000;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

.tooltip-error {
  background: #ff4444;
}

.tooltip-error::before {
  border-bottom-color: #ff4444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Melhorias gerais na aparência */
.hero .right {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 191, 255, 0.1);
}

.hero .right h2 {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Melhorias nas tabelas */
.tabela-custom.destaque {
  border: 2px solid rgba(0, 191, 255, 0.1);
  transition: all 0.3s ease;
}

.tabela-custom.destaque:hover {
  border-color: rgba(0, 191, 255, 0.3);
}

.tabela-custom.destaque th {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Efeito de destaque para valores importantes nas tabelas */
.tabela-custom.destaque .riscado {
  position: relative;
  color: #999;
}

.tabela-custom.destaque .riscado::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff4444;
  transform: rotate(-5deg);
}

/* Melhorias no header */
header {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-bottom: 3px solid #00BFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn.active {
  background: linear-gradient(135deg, #00BFFF, #007bff);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
}

/* Melhorias na frase de efeito */
.frase-efeito {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  margin: 6rem 0 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  backdrop-filter: none;
  animation: none;
}

.frase-efeito .destaque {
  font-size: 3.5rem;
  color: #ffdd00;
  font-style: italic;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  animation: none;
}

/* Melhorias no footer */
.footer {
  background: linear-gradient(135deg, #007bff, #0056b3);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.footer p,
.footer a {
  position: relative;
  z-index: 1;
}

/* Melhorias na responsividade */
@media (max-width: 768px) {
  .tooltip {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .frase-efeito {
    animation: none;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .hero .right {
    background: #ffffff;
  }
  
  /* Responsividade para depoimentos */
  /* Depoimentos container movido para cta-banner.css */
  
  /* Depoimentos wrapper movido para cta-banner.css */
  
  /* Depoimento card movido para cta-banner.css */
  
  /* Carrossel movido para cta-banner.css */
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Depoimentos section movido para cta-banner.css */
}

/* Efeitos de loading e transições suaves */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #00BFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Melhorias na acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Efeitos de foco para acessibilidade */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #00BFFF;
  outline-offset: 2px;
}

/* Melhorias no contraste */
@media (prefers-contrast: high) {
  .hero .right {
    background: #ffffff;
    border: 2px solid #00BFFF;
  }
  
  .tabela-custom.destaque {
    border: 2px solid #00BFFF;
  }
  
  .btn-whatsapp {
    background: #25D366;
    border: 2px solid #128C7E;
  }
}

/* ========================================
   SEÇÃO DE DEPOIMENTOS CENTRALIZADA
   ======================================== */

.depoimentos-section {
  text-align: left !important;
}

.depoimentos-layout {
  display: flex !important;
  flex-direction: row !important; /* Layout horizontal como o hero */
  align-items: flex-start !important; /* Alinha no topo */
  justify-content: center !important; /* Centraliza todo o conjunto na página */
  max-width: 1200px !important;
  margin: 0 auto !important; /* Centraliza na página */
  gap: 3rem !important; /* Espaçamento entre título e carrossel */
}

.depoimentos-titulo {
  width: 300px !important; /* Largura fixa para o título */
  max-width: 300px !important;
  margin: 0 !important;
  flex-shrink: 0 !important; /* Não diminui */
}

.depoimentos-carousel {
  flex: 1 !important; /* Ocupa o espaço restante */
  max-width: 800px !important; /* Largura máxima do carrossel */
}

/* Responsividade - Só centraliza em mobile */
@media (max-width: 768px) {
  .depoimentos-section {
    text-align: center !important; /* Centraliza em tablets */
  }
  
  .depoimentos-layout {
    flex-direction: column !important; /* Empilha verticalmente */
    align-items: center !important; /* Centraliza */
    justify-content: center !important;
    gap: 2rem !important;
  }
  
  .depoimentos-titulo {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  
  .depoimentos-carousel {
    width: 100% !important;
    max-width: 600px !important;
  }
}

@media (max-width: 480px) {
  .depoimentos-titulo {
    max-width: 350px !important;
  }
  
  .depoimentos-carousel {
    max-width: 350px !important;
  }
}

/* ========================================
   NOVAS SEÇÕES DA PÁGINA SOBRE
   ======================================== */

/* Seção: Processo de Contemplação */
.contemplacao-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 2rem;
  color: #333;
}

.contemplacao-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #007bff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contemplacao-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contemplacao-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.contemplacao-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.contemplacao-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contemplacao-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #007bff;
}

.contemplacao-item p {
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Seção: Comparativo Consórcio vs Financiamento */
.comparativo-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  padding: 4rem 2rem;
  color: white;
}

.comparativo-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.comparativo-container {
  max-width: 900px;
  margin: 0 auto;
}

.comparativo-tabela {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparativo-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparativo-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparativo-row:last-child {
  border-bottom: none;
}

.comparativo-col {
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparativo-header .comparativo-col {
  padding: 1.5rem 1rem;
  font-weight: 700;
}

.comparativo-col.vantagem {
  color: #90EE90;
  font-weight: 600;
}

.comparativo-col.desvantagem {
  color: #FFB6C1;
  font-weight: 600;
}

/* Seção: Dicas para Escolher o Plano Ideal */
.dicas-section {
  background: linear-gradient(135deg, #28a745, #20c997);
  padding: 4rem 2rem;
  color: white;
}

.dicas-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dicas-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.dica-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dica-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dica-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.dica-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.dica-card p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
  .contemplacao-container,
  .dicas-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparativo-tabela {
    font-size: 0.9rem;
  }
  
  .comparativo-col {
    padding: 1rem 0.5rem;
  }
  
  .contemplacao-section h2,
  .comparativo-section h2,
  .dicas-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contemplacao-section,
  .comparativo-section,
  .dicas-section {
    padding: 3rem 1rem;
  }
  
  .contemplacao-item,
  .dica-card {
    padding: 1.5rem;
  }
  
  .comparativo-tabela {
    font-size: 0.8rem;
  }
}

/* ========================================
   SEÇÃO DE MANUTENÇÃO - PÁGINA CAMPANHA
   ======================================== */

.manutencao-section {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.manutencao-container {
  max-width: 800px;
  margin: 0 auto;
}

.manutencao-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.manutencao-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.manutencao-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.manutencao-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.manutencao-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.manutencao-details p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.manutencao-details ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.manutencao-details li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.manutencao-details li:last-child {
  border-bottom: none;
}

/* Barra de carregamento animada */
.loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
}

.loading-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.manutencao-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.manutencao-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-simular {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-simular:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-simular:active {
  transform: translateY(-1px);
}

/* Responsividade para a seção de manutenção */
@media (max-width: 768px) {
  .manutencao-section {
    padding: 3rem 1rem;
  }
  
  .manutencao-section h2 {
    font-size: 2rem;
  }
  
  .manutencao-section h3 {
    font-size: 1.5rem;
  }
  
  .manutencao-section p {
    font-size: 1rem;
  }
  
  .manutencao-details,
  .manutencao-cta {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .manutencao-section {
    padding: 2rem 1rem;
  }
  
  .manutencao-icon {
    font-size: 3rem;
  }
  
  .manutencao-section h2 {
    font-size: 1.8rem;
  }
  
  .manutencao-section h3 {
    font-size: 1.3rem;
  }
  
  .btn-simular {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   BARRA DE PROGRESSO ANIMADA
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px; /* Reduzida pela metade: de 4px para 2px */
  background: linear-gradient(90deg, #005eff, #00d4ff, #005eff);
  background-size: 200% 100%;
  z-index: 10000;
  transition: width 0.1s ease;
  animation: progressGlow 2s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(0, 94, 255, 0.3);
}

@keyframes progressGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ========================================
   DESIGN RESPONSIVO MELHORADO
   ======================================== */

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .left, .right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .left h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .left p {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .video-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .video-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .video-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .video-text p {
    text-align: center;
  }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .nav-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .frase-efeito {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .frase-efeito p {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .icone-frase {
    width: 30px;
    height: 30px;
  }
  
  .hero {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  
  .left h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .left p {
    font-size: 1rem;
  }
  
  .right h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .category-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .category {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  .toggle {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .toggle button {
    width: 100%;
    padding: 0.8rem;
  }
  
  .slider-container {
    margin: 1.5rem 0;
  }
  
  .value {
    font-size: 1.5rem;
  }
  
  .simular {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
  }
  
  .video-section {
    padding: 2rem 1rem;
    margin: 1.5rem 0;
  }
  
  .video-text h2 {
    font-size: 1.8rem;
  }
  
  .video-text h3 {
    font-size: 1.4rem;
  }
  
  .video-text p {
    font-size: 1rem;
  }
  
  .depoimentos-section {
    padding: 2rem 1rem;
  }
  
  .depoimentos-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .depoimentos-titulo {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  
  .depoimentos-titulo h2 {
    font-size: 1.5rem;
  }
  
  .depoimentos-carousel {
    width: 100%;
    padding: 0 1rem;
  }
  
  .depoimentos-grid {
    gap: 1rem;
  }
  
  .depoimento-card {
    width: 280px;
    min-width: 280px;
    height: 280px;
    padding: 1rem;
  }
  
  .area-branca {
    padding: 2rem 1rem;
  }
  
  .tabela-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tabela-titulo {
    padding: 1.5rem 1rem;
  }
  
  .subtitulo-tabela {
    font-size: 1.1rem;
  }
  
  .titulo-tabela-grande {
    font-size: 1.8rem;
  }
  
  .tabela-custom {
    font-size: 0.9rem;
  }
  
  .tabela-custom th,
  .tabela-custom td {
    padding: 0.8rem 0.5rem;
  }
  
  .faq-section {
    padding: 2rem 1rem;
  }
  
  .faq-section .section-title {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: 2rem 1rem;
    text-align: center;
  }
}

/* Responsividade para dispositivos muito pequenos */
@media (max-width: 480px) {
  .hero {
    padding: 1rem 0.5rem;
  }
  
  .left h1 {
    font-size: 1.8rem;
  }
  
  .left p {
    font-size: 0.95rem;
  }
  
  .right h2 {
    font-size: 1.3rem;
  }
  
  .category {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .toggle button {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .value {
    font-size: 1.3rem;
  }
  
  .simular {
    padding: 0.9rem;
    font-size: 1.1rem;
  }
  
  .video-section {
    padding: 1.5rem 0.5rem;
  }
  
  .video-text h2 {
    font-size: 1.6rem;
  }
  
  .video-text h3 {
    font-size: 1.2rem;
  }
  
  .video-text p {
    font-size: 0.95rem;
  }
  
  .depoimentos-section {
    padding: 1.5rem 0.5rem;
  }
  
  .depoimentos-titulo h2 {
    font-size: 1.3rem;
  }
  
  .depoimento-card {
    width: 260px;
    min-width: 260px;
    height: 260px;
    padding: 0.8rem;
  }
  
  .depoimento-card .perfil-foto {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .depoimento-card .perfil-nome {
    font-size: 1rem;
  }
  
  .depoimento-card .card-content p {
    font-size: 0.9rem;
  }
  
  .area-branca {
    padding: 1.5rem 0.5rem;
  }
  
  .tabela-titulo {
    padding: 1rem 0.8rem;
  }
  
  .subtitulo-tabela {
    font-size: 1rem;
  }
  
  .titulo-tabela-grande {
    font-size: 1.6rem;
  }
  
  .tabela-custom {
    font-size: 0.8rem;
  }
  
  .tabela-custom th,
  .tabela-custom td {
    padding: 0.6rem 0.4rem;
  }
  
  .faq-section {
    padding: 1.5rem 0.5rem;
  }
  
  .faq-section .section-title {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 0.8rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer {
    padding: 1.5rem 0.5rem;
  }
  
  .footer p {
    font-size: 0.9rem;
  }
}

/* Responsividade para dispositivos com tela muito pequena */
@media (max-width: 360px) {
  .left h1 {
    font-size: 1.6rem;
  }
  
  .left p {
    font-size: 0.9rem;
  }
  
  .right h2 {
    font-size: 1.2rem;
  }
  
  .category {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .toggle button {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .value {
    font-size: 1.2rem;
  }
  
  .simular {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .video-text h2 {
    font-size: 1.4rem;
  }
  
  .video-text h3 {
    font-size: 1.1rem;
  }
  
  .video-text p {
    font-size: 0.9rem;
  }
  
  .depoimentos-titulo h2 {
    font-size: 1.2rem;
  }
  
  .depoimento-card {
    width: 240px;
    min-width: 240px;
    height: 240px;
    padding: 0.7rem;
  }
  
  .depoimento-card .perfil-foto {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .depoimento-card .perfil-nome {
    font-size: 0.9rem;
  }
  
  .depoimento-card .card-content p {
    font-size: 0.85rem;
  }
  
  .subtitulo-tabela {
    font-size: 0.9rem;
  }
  
  .titulo-tabela-grande {
    font-size: 1.4rem;
  }
  
  .tabela-custom {
    font-size: 0.75rem;
  }
  
  .faq-section .section-title {
    font-size: 1.4rem;
  }
  
  .faq-question {
    font-size: 0.9rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }
}

/* ========================================
   MELHORIAS DE ACESSIBILIDADE
   ======================================== */

/* Foco visível para navegação por teclado */
.nav-btn:focus,
.category:focus,
.toggle button:focus,
.simular:focus,
.carousel-arrow:focus {
  outline: 3px solid #005eff;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Melhor contraste para textos */
@media (prefers-contrast: high) {
  .left p,
  .right p,
  .video-text p,
  .depoimento-card .card-content p,
  .faq-answer p {
    color: #000;
  }
  
  .depoimento-card .perfil-nome {
    color: #000;
  }
}

/* Modo escuro automático */
@media (prefers-color-scheme: dark) {
  .scroll-progress {
    background: linear-gradient(90deg, #00d4ff, #005eff, #00d4ff);
  }
}

/* ========================================
   ANIMAÇÕES SUAVES
   ======================================== */

/* Transições suaves para todos os elementos interativos */
.nav-btn,
.category,
.toggle button,
.simular,
.carousel-arrow,
.depoimento-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects melhorados */
.nav-btn:hover,
.category:hover,
.toggle button:hover,
.simular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 94, 255, 0.25);
}

/* Animação para o carrossel */
.depoimentos-grid {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

/* ========================================
   CORREÇÕES PARA DISPOSITIVOS ESPECÍFICOS
   ======================================== */

/* Correções para iOS Safari */
@supports (-webkit-touch-callout: none) {
  .depoimentos-grid {
    -webkit-overflow-scrolling: touch;
  }
  
  .scroll-progress {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Correções para dispositivos com alta densidade de pixels */
@media screen and (-webkit-device-pixel-ratio: 3),
       screen and (-webkit-device-pixel-ratio: 2) {
  .scroll-progress {
    height: 3px;
  }
  
  .depoimento-card {
    border: 0.5px solid #f0f0f0;
  }
}

/* ========================================
   NAVEGAÇÃO RESTAURADA - FORMATO ORIGINAL
   ======================================== */

/* Menu horizontal como era antes */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 0.5rem auto;
  max-width: 600px;
}

.nav-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: white;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 120px;
}

.nav-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-btn.active {
  background: linear-gradient(135deg, #005eff, #00d4ff);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 94, 255, 0.3);
}

/* Responsividade para o menu - mantendo horizontal */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row; /* Mantém horizontal */
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    margin: 0.4rem 0.8rem;
    max-width: 100%;
  }
  
  .nav-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    min-width: auto;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 0.8rem;
    gap: 0.3rem;
  }
  
  .nav-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 0.5rem 0.6rem;
    gap: 0.2rem;
  }
  
  .nav-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   ANIMAÇÕES ESPECIAIS PARA PARTÍCULAS E CONFETTI
   ======================================== */

/* Animação para partículas flutuantes */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  20% {
    transform: translateY(-20px) scale(1);
    opacity: 1;
  }
  80% {
    transform: translateY(-60px) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* Animação para confetti caindo - CORRIGIDA */
@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(20vh) rotate(90deg) scale(0.9);
    opacity: 1;
  }
  40% {
    transform: translateY(40vh) rotate(180deg) scale(0.8);
    opacity: 0.9;
  }
  60% {
    transform: translateY(60vh) rotate(270deg) scale(0.7);
    opacity: 0.8;
  }
  80% {
    transform: translateY(80vh) rotate(360deg) scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* Efeito de brilho para partículas */
.floating-particle {
  box-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(255, 255, 255, 0.4);
}

/* Efeito de brilho para confetti - CORRIGIDO */
.confetti {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  animation: confettiFall 4s ease-out forwards;
  z-index: 9999;
  border-radius: 2px;
  box-shadow: 
    0 0 8px currentColor,
    0 0 16px currentColor;
}

