@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("sections/header.css");
@import url("sections/banner.css");
@import url("sections/programa.css");
@import url("sections/depoimentos.css");
@import url("sections/solucao.css");
@import url("sections/quebrar-crencas.css");
@import url("sections/sobre.css");
@import url("sections/cta.css");
@import url("sections/footer.css");
@import url("sections/quiz.css");
@import url("sections/faq.css");
@import url("sections/como-funciona.css");
@import url("sections/marquee.css");

/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
  /* Cores principais - Paleta dourada unificada */
  --dourado: #527a8a;
  --dourado-claro: #7a9ba8;
  --dourado-muito-claro: #a8bcc4;
  --dourado-escuro: #3d5a66;
  --dourado-hover: #4a6b77;
  --cinza-claro: #f8f9fa;
  --cinza: #e6e6e6;
  --cinza-texto: #555;
  --cinza-escuro: #333;
  --branco: #ffffff;
  --branco-dourado: #f0f4f6;
  --branco-dourado-claro: #f5f8fa;
  --preto: #222222;

  /* Sombras */
  --sombra-leve: 0 2px 10px rgba(212, 175, 55, 0.06);
  --sombra-media: 0 4px 16px rgba(212, 175, 55, 0.08);
  --sombra-forte: 0 8px 24px rgba(212, 175, 55, 0.12);

  /* Gradientes */
  --gradiente-dourado: linear-gradient(
    90deg,
    var(--dourado) 60%,
    var(--dourado-escuro)
  );
  --gradiente-inverso: linear-gradient(
    90deg,
    var(--dourado-escuro) 60%,
    var(--dourado)
  );
  --gradiente-branco-dourado: linear-gradient(
    135deg,
    var(--branco) 0%,
    var(--branco-dourado) 100%
  );

  /* Espaçamentos */
  --espacamento-xs: 8px;
  --espacamento-s: 16px;
  --espacamento-m: 24px;
  --espacamento-l: 32px;
  --espacamento-xl: 48px;

  /* Bordas */
  --borda-s: 8px;
  --borda-m: 16px;
  --borda-l: 24px;
  --borda-xl: 32px;

  /* Transições */
  --transicao: 0.3s ease;
}

/* ===== RESET E ESTILOS BASE ===== */
html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  color: var(--cinza-escuro);
  background: var(--branco);
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin: 0;
}

p {
  /* margin: 0 0 var(--espacamento-s) 0; */
}

a {
  color: var(--dourado);
  text-decoration: none;
  transition: color var(--transicao);
}

a:hover {
  color: var(--dourado-escuro);
}

/* ===== CLASSES DE UTILIDADE ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--espacamento-s);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SEÇÕES ===== */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ===== ANCORAS E SEÇÕES ===== */
#inicio {
  scroll-margin-top: 70px;
}

#problema {
  scroll-margin-top: 70px;
}

#quiz {
  scroll-margin-top: 70px;
  position: relative;
}

#quiz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/pattern-dots.svg");
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

#solucao {
  scroll-margin-top: 70px;
}

#beneficios {
  scroll-margin-top: 70px;
  position: relative;
}

#beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/pattern-circles.svg");
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

#faq {
  scroll-margin-top: 70px;
}

#como-funciona {
  scroll-margin-top: 70px;
}

#sobre {
  scroll-margin-top: 70px;
  background: var(--branco-dourado);
  padding: var(--espacamento-xl) 0;
}

#contato {
  scroll-margin-top: 70px;
}

/* ===== HEADER SCROLL ===== */
.header.scrolled {
  box-shadow: var(--sombra-media);
}

/* ===== ANIMAÇÕES ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Delay sequencial para itens em listas */
.feature-item:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
  transition-delay: 0.3s;
}

.feature-item:nth-child(3) {
  transition-delay: 0.5s;
}

.feature-item:nth-child(4) {
  transition-delay: 0.7s;
}

.timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  transition-delay: 0.3s;
}

.timeline-item:nth-child(3) {
  transition-delay: 0.5s;
}

.timeline-item:nth-child(4) {
  transition-delay: 0.7s;
}

.timeline-item:nth-child(5) {
  transition-delay: 0.9s;
}

.faq-item:nth-child(1) {
  transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
  transition-delay: 0.3s;
}

.faq-item:nth-child(3) {
  transition-delay: 0.5s;
}

.faq-item:nth-child(4) {
  transition-delay: 0.7s;
}

/* CABEÇALHOS DE SEÇÃO ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-secao {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dourado-escuro);
}

/* .section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
} */

.divider-line {
  height: 2px;
  width: 60px;
  background-color: var(--dourado-escuro);
  margin: 0 10px;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--dourado-escuro);
  border-radius: 50%;
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cinza-texto);
}

/* ===== BOTÕES ===== */

.btn-dourado:hover {
  background: var(--dourado-escuro);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.2);
  color: var(--branco);
}

.btn-outline {
  display: inline-block;
  padding: var(--espacamento-xs) var(--espacamento-m);
  border: 2px solid var(--dourado);
  border-radius: var(--borda-s);
  color: var(--branco);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transicao), color var(--transicao);
  font-size: 0.95rem;
  background-color: var(--dourado);
}

.btn-outline:hover {
  background-color: var(--dourado-escuro);
  color: var(--branco);
}

/* ===== ÍCONES ===== */
.icone-dourado {
  color: var(--dourado) !important;
}

.icone-branco {
  color: var(--branco) !important;
}

.icone-dourado-escuro {
  color: var(--dourado-escuro) !important;
}

/* ===== TEXTO ===== */
.texto-dourado {
  color: var(--dourado) !important;
}

.texto-dourado-escuro {
  color: var(--dourado-escuro) !important;
}

.texto-branco {
  color: var(--branco) !important;
}

/* ===== ANIMAÇÃO DE PULSO ===== */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* FAQ estilos ativos */
.faq-item.active .faq-question h3 {
  color: var(--dourado-escuro);
  font-weight: 700;
}

.faq-item.active .faq-answer {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--espacamento-m);
  }

  .section {
    padding: var(--espacamento-xl) 0;
  }

  .titulo-secao {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .titulo-secao {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0 var(--espacamento-l);
  }
}

/* Estilos gerais para todas as seções */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Títulos e cabeçalhos de seção */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-secao {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dourado-escuro);
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cinza-texto);
}

/* .section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
} */

.divider-line {
  height: 2px;
  width: 60px;
  background-color: var(--dourado-escuro);
  margin: 0 10px;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--dourado-escuro);
  border-radius: 50%;
}

/* Banner / Hero Section */
.banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  margin-left: -60px;
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dourado-escuro);
}

.banner-subtitle {
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
}

/* Seção de Empatia */
.empatia-section {
  background-color: var(--cinza-claro) 00;
}

.empatia-content {
  max-width: 800px;
  margin: 0 auto;
}

.citacao {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cinza-texto);
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 3px solid var(--dourado-escuro);
}

.empatia-explicacao {
  font-size: 1.2rem;
  margin: 25px 0;
}

.lista-impactos {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.lista-impactos li {
  padding: 10px 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}

.lista-impactos li i {
  color: var(--dourado-escuro);
  margin-right: 10px;
  font-size: 10px;
}

.mensagem-empatia {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: var(--dourado-muito-claro);
  border-radius: 10px;
  color: var(--dourado-escuro);
}

.mensagem-empatia i {
  color: var(--dourado-escuro);
  margin-right: 10px;
}

/* Seção de Solução */
.solucao-section {
  background-color: var(--branco);
}

.solucao-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}

.solucao-conteudo {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.solucao-intro-text {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.solucao-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--cinza-claro);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 280px;
  /* Altura fixa para todos os cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: flex-start;
  /* Alinha o conteúdo ao topo */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--branco);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--dourado-escuro);
  border-radius: 50%;
  flex-shrink: 0;
  /* Impede que o ícone encolha */
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dourado-escuro);
  width: 100%;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--cinza-texto);
  line-height: 1.5;
  flex-grow: 1;
  /* Permite que o texto ocupe o espaço disponível */
  width: 100%;
  margin-bottom: 0;
}

.solucao-highlights {
  text-align: center;
  margin-top: 50px;
}

.programa-estruturado {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dourado-escuro);
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--dourado-muito-claro);
  border-radius: 8px;
  margin-right: auto;
  margin-left: auto;
}

.programa-estruturado i {
  color: var(--dourado-escuro);
  margin-right: 10px;
}

/* Seção de Benefícios */
.beneficios-section {
  background-color: var(--cinza-claro);
}

.beneficios-content {
  max-width: 1140px;
  margin: 0 auto;
}

.beneficios-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.beneficios-texto {
  flex: 1;
  min-width: 300px;
}

.beneficios-imagem {
  flex: 1;
  display: flex;
  justify-content: right;
  min-width: 300px;
}

@media (max-width: 600px) {
  .beneficios-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
  }
}

.beneficios-imagem img {
  max-width: 75%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.beneficios-intro {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-align: center;
}

.lista-beneficios {
  list-style: none;
  padding: 0;
}

.lista-beneficios li {
  padding: 12px 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.lista-beneficios li i {
  color: var(--dourado);
  margin-right: 15px;
  font-size: 10px;
}

@media (max-width: 768px) {
  .beneficios-wrapper {
    flex-direction: column-reverse;
  }

  .beneficios-texto,
  .beneficios-imagem {
    width: 100%;
  }

  .beneficios-imagem {
    margin-bottom: 30px;
  }
}

/* Seção de Depoimentos */
.depoimentos-section {
  background-color: var(--branco);
}

.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.depoimento {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 30px;
  background-color: var(--cinza-claro);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.depoimento:hover {
  transform: translateY(-5px);
}

.depoimento-aspas {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  color: var(--cinza);
  opacity: 0.8;
}

.depoimento-texto {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 20px;
}

.depoimento-autor {
  font-weight: 600;
  color: var(--dourado-escuro);
  text-align: right;
  font-size: 20px;
}

.depoimentos-cta {
  text-align: center;
  margin-top: 50px;
}

/* Seção de Processo */
.processo-section {
  background-color: var(--cinza-claro);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  height: 90%;
  width: 3px;
  background-color: var(--cinza);
  left: 24px;
  top: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
}

.timeline-numero {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--dourado-escuro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-weight: bold;
  font-size: 1.3rem;
  z-index: 1;
}

.timeline-content {
  background-color: var(--branco);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-titulo {
  font-size: 1.2rem;
  margin: 0;
  color: var(--cinza-escuro);
}

.timeline-item.active .timeline-titulo {
  color: var(--dourado-escuro);
  font-weight: 600;
}

.processo-mensagem-final {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  color: var(--dourado-escuro);
}

/* Seção de CTA */
.cta-section {
  background-color: var(--dourado-escuro);
  color: var(--branco);
  padding: 100px 0;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 50px;
  text-align: center;
}

.cta-titulo {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-subtitulo {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-cta-final {
  font-size: 1.2rem;
  padding: 15px 40px;
  background-color: var(--branco);
  color: var(--dourado-escuro);
  border: none;
}

.btn-cta-final:hover {
  background-color: var(--cinza-claro);
}

.btn-cta-final i {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Seção de FAQ */
.faq-section {
  background-color: var(--cinza-claro);
  padding-bottom: 100px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--branco);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--branco);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question::after {
  content: "\f107";
  /* Font Awesome caret down icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  color: var(--dourado-escuro);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--dourado-escuro);
  margin-right: 15px;
  min-width: 25px;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--cinza-escuro);
  margin: 0;
  font-weight: 500;
  flex-grow: 1;
  padding-right: 30px;
  /* Espaço para o ícone de seta */
}

.faq-item.active .faq-question {
  background-color: var(--dourado-muito-claro);
}

.faq-item.active .faq-question h3 {
  color: var(--dourado-escuro);
  font-weight: 600;
}

.faq-answer {
  background-color: var(--cinza-claro);
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 25px 25px 65px;
  /* Alinhado com o texto da pergunta */
  max-height: 300px;
  /* Valor alto o suficiente para comportar o conteúdo */
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cinza-texto);
  margin: 0;
}

/* Footer */
.footer {
  background-color: var(--dourado-escuro);
  color: var(--branco);
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-sociais {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  color: var(--branco);
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.8;
}

.footer-titulo {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-titulo:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-contato {
  list-style: none;
  padding: 0;
}

.footer-contato-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contato-item i {
  margin-right: 15px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contato-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-contato-item a {
  color: var(--branco);
  text-decoration: underline;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu-item {
  margin-bottom: 15px;
}

.footer-menu-item a {
  color: var(--branco);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.footer-menu-item a:hover {
  opacity: 0.8;
}

.footer-menu-item i {
  font-size: 0.8rem;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-creditos {
  color: var(--branco);
  text-decoration: underline;
}

/* Botões e elementos interativos */
.btn-dourado {
  display: inline-block;
  background-color: var(--dourado);
  color: var(--branco);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-align: center;
  width: 450px;
}

.btn-dourado:hover {
  background-color: var(--dourado-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-dourado i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-dourado:hover i {
  transform: translateX(5px);
}

/* Animações */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .titulo-secao {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 2.3rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .cta-titulo {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .banner {
    min-height: 400px;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .depoimentos-container {
    flex-direction: column;
    align-items: center;
  }

  .depoimento {
    max-width: 100%;
  }

  .cta-card {
    padding: 30px;
  }

  .cta-titulo {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Animações de entrada */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Delay sequencial para itens em listas */
.feature-item:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
  transition-delay: 0.3s;
}

.feature-item:nth-child(3) {
  transition-delay: 0.5s;
}

.feature-item:nth-child(4) {
  transition-delay: 0.7s;
}

.timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  transition-delay: 0.3s;
}

.timeline-item:nth-child(3) {
  transition-delay: 0.5s;
}

.timeline-item:nth-child(4) {
  transition-delay: 0.7s;
}

.timeline-item:nth-child(5) {
  transition-delay: 0.9s;
}

.faq-item:nth-child(1) {
  transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
  transition-delay: 0.3s;
}

.faq-item:nth-child(3) {
  transition-delay: 0.5s;
}

.faq-item:nth-child(4) {
  transition-delay: 0.7s;
}

/* Estilos para o menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dourado-escuro);
  transition: all 0.3s ease;
  transform-origin: left;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

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

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

/* FAQ estilos ativos */
.faq-item.active .faq-question h3 {
  color: var(--dourado-escuro);
  font-weight: 700;
}

.faq-item.active .faq-answer {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajustes de responsividade */
@media screen and (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--branco);
    padding: 40px 20px;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-link,
  .nav-cta {
    font-size: 1.2rem;
  }

  .depoimentos-container {
    flex-direction: column;
  }

  .depoimento {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* Acessibilidade */
:focus-visible {
  outline: 3px solid var(--dourado-escuro);
  outline-offset: 3px;
}

/* Efeito hover nos botões e links */
a,
button {
  transition: all 0.3s ease;
}

a:hover,
button:hover {
  opacity: 0.9;
}

/* Ajuste para telas pequenas */
@media screen and (max-width: 576px) {
  .titulo-secao {
    font-size: 1.8rem;
  }

  .banner-title {
    font-size: 1.6rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .citacao {
    font-size: 1.2rem;
  }

  .feature-item {
    padding: 15px;
  }

  .timeline-numero {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-left: -2px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .cta-titulo {
    font-size: 1.4rem;
  }

  .btn-dourado {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
  .solucao-features {
    grid-template-columns: 1fr;
    /* Uma coluna em telas menores */
    max-width: 400px;
    /* Limita a largura em telas menores */
  }

  .feature-item {
    min-height: 220px;
    /* Altura menor em dispositivos móveis */
  }
}

/* Esconder botão do banner em dispositivos móveis */
@media screen and (max-width: 768px) {
  .banner-content .btn-dourado {
    display: none;
  }
}

/* Ajuste específico para telas muito pequenas */
@media (max-width: 330px) {
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    margin-left: -40px;
    margin-top: -230px;
  }

  .banner-content h1 {
    font-size: 19px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .banner-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 428px) {
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    margin-left: -50px;
    margin-top: -170px;
  }

  .banner-content h1 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 420px) {
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    margin-left: -50px;
    margin-top: -260px;
  }

  .banner-content h1 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .banner-subtitle {
    font-size: 15px;
  }

  .timeline-numero {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-left: -2px;
  }
}

@media (max-width: 400px) {
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    margin-left: -50px;
    margin-top: -240px;
  }

  .banner-content h1 {
    font-size: 21px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .banner-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    margin-left: -40px;
    /* margin-top: -230px; */
    margin-top: -235px;
  }

  .banner-content h1 {
    font-size: 19px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .banner-subtitle {
    font-size: 12px;
  }
}
