/* =========================================
   VARIÁVEIS E RESET GLOBAL
   ========================================= */
:root {
  --cor-fundo: #050505;
  --cor-fundo-sec: #121212;
  --cor-texto: #ffffff;
  --cor-destaque: #d4af37;
  --gradiente-dourado: linear-gradient(
    90deg,
    #bf953f 0%,
    #fcf6ba 50%,
    #b38728 100%
  );
  --gradiente-dourado-bg: linear-gradient(
    90deg,
    #b68d40 0%,
    #f4e084 50%,
    #b68d40 100%
  );
  --fonte-principal: "Montserrat", sans-serif;

  /* Cores reutilizáveis */
  --cor-branco-03: rgba(255, 255, 255, 0.03);
  --cor-branco-05: rgba(255, 255, 255, 0.05);
  --cor-branco-07: rgba(255, 255, 255, 0.07);
  --cor-preto-03: rgba(0, 0, 0, 0.3);
  --cor-dourado-15: rgba(212, 175, 55, 0.15);
  --cor-dourado-20: rgba(212, 175, 55, 0.2);
  --cor-dourado-30: rgba(212, 175, 55, 0.3);
  --cor-dourado-40: rgba(212, 175, 55, 0.4);
  --cor-dourado-60: rgba(212, 175, 55, 0.6);
  --cor-dourado-70: rgba(212, 175, 55, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--cor-texto);
  font-family: var(--fonte-principal);
  line-height: 1.6;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 60%
    ),
    linear-gradient(to bottom, #050505 0%, #1a1a1a 100%);
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.texto-dourado {
  font-weight: 700;
  color: var(--cor-destaque);
  background: var(--gradiente-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
}

.hero-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-basis: 45%;
  position: relative;
  z-index: 1;
}

.moldura-wrapper {
  position: relative;
  padding: 10px;
  display: inline-block;
  border: 3px solid transparent;
  border-image: linear-gradient(90deg, #b68d40 0%, #f4e084 50%, #b68d40 100%);
  border-image-slice: 1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.moldura-wrapper img {
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: grayscale(20%) sepia(10%) contrast(110%) brightness(90%);
  -webkit-mask-image: linear-gradient(
    to left,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, black 5%, black 95%, transparent 100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-img img:hover {
  transform: scale(1.02);
  filter: grayscale(0%) sepia(0%) contrast(110%) brightness(100%);
}

/* =========================================
   BOTÕES
   ========================================= */
.grupo-botoes {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--gradiente-dourado-bg);
  color: #000;
  padding: 18px 35px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 0 20px var(--cor-dourado-40);
  border: 1px solid #ffeebb;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 10;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-20deg);
  animation: brilho-animado 3s infinite;
  z-index: 1;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--cor-dourado-70);
}

@keyframes brilho-animado {
  0% {
    left: -150%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.btn-saiba-mais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-saiba-mais:hover,
.btn-saiba-mais:active {
  background-color: transparent;
  border-color: var(--cor-destaque);
  color: var(--cor-destaque);
  box-shadow: 0 0 15px var(--cor-dourado-20);
}

.seta-direita {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
}

/* =========================================
   SECÇÕES COMUNS
   ========================================= */
.titulo-secao {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
}

.titulo-secao h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.titulo-secao h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.titulo-secao p {
  color: #999;
  font-size: 1.2rem;
}

/* =========================================
   SEÇÃO PROBLEMAS
   ========================================= */
.secao-problemas {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--cor-branco-05);
}

.lista-problemas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.item-problema {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--cor-preto-03);
  border-radius: 10px;
  border: 1px solid rgba(255, 50, 50, 0.1);
  transition: 0.3s;
}

.item-problema:hover {
  background: rgba(255, 50, 50, 0.05);
  transform: translateX(5px);
}

.icone-x {
  color: #ff4d4d;
  font-weight: bold;
  font-size: 1.2rem;
}

.item-problema p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.item-problema strong {
  color: #fff;
}

/* =========================================
   SEÇÃO PROVA SOCIAL (TIMELINE)
   ========================================= */
.secao-prova-social {
  padding: 80px 0;
}

.timeline-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card-mes {
  background: var(--cor-branco-03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  width: 215px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
}

.card-mes:hover {
  transform: translateY(-10px);
  border-color: var(--cor-dourado-60);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.card-mes.destaque-final {
  border: 1px solid var(--cor-destaque);
  box-shadow: 0 0 20px var(--cor-dourado-15);
  transform: scale(1.05);
  z-index: 5;
}

.card-mes.destaque-final:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 0 40px var(--cor-dourado-40);
}

.tag-mes {
  display: block;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 0;
  margin: -15px -15px 15px -15px;
  border-radius: 15px 15px 0 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  border-bottom: 1px solid var(--cor-branco-05);
}

.destaque-final .tag-mes {
  background: var(--gradiente-dourado);
  color: #000;
}

.moldura-print {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
}

.moldura-print img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transform: scale(1.25);
  transform-origin: top left;
  transition: transform 0.5s ease;
}

.card-mes:hover .moldura-print img {
  transform: scale(1.35);
}

.dados-mes .label {
  display: block;
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.dados-mes .valor {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.seta-evolucao {
  font-size: 1.2rem;
  color: var(--cor-destaque);
  opacity: 0.5;
  margin-top: 200px;
  padding: 0 5px;
}

/* =========================================
   SEÇÃO CONTEÚDO (CARDS)
   ========================================= */
.secao-conteudo {
  padding: 100px 0;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.card {
  background: var(--cor-branco-03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 35px;
  border-radius: 12px;
  border: 1px solid var(--cor-branco-05);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  background: var(--cor-branco-07);
  border-color: var(--cor-destaque);
  box-shadow: 0 20px 40px var(--cor-dourado-15);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
  background: var(--cor-destaque);
  transition: 0.3s ease;
  box-shadow: 0 0 10px var(--cor-destaque);
}

.card:hover::after {
  height: 100%;
}

.card-icone {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  color: #8a6d3b;
  transition: all 0.4s ease;
}

.card-icone svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.card:hover .card-icone {
  color: var(--cor-destaque);
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 15px var(--cor-dourado-60));
}

.card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 15px;
}

.card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.card:nth-child(2) {
  transition-delay: 200ms;
}

.card:nth-child(3) {
  transition-delay: 400ms;
}

/* =========================================
   SEÇÃO MENTORES
   ========================================= */
.secao-mentores {
  padding: 100px 0;
}

.mentores-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.mentor-card {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  background: var(--cor-branco-03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--cor-branco-05);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-10px);
  border-color: var(--cor-destaque);
  background: var(--cor-branco-07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mentor-foto {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid var(--cor-destaque);
}

.mentor-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: 0.5s ease;
}

.mentor-card:hover .mentor-foto img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.assinatura-mentor {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  color: var(--cor-destaque);
  margin-bottom: 5px;
  line-height: 1.2;
}

.cargo-mentor {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0.8;
}

.mentor-info p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 10px;
}

/* =========================================
   SEÇÃO APLICAÇÃO (FORMULÁRIO)
   ========================================= */
.secao-aplicacao {
  padding: 100px 0;
  position: relative;
}

.aplicacao-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.aplicacao-texto {
  flex: 1;
  max-width: 500px;
}

.aplicacao-texto h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.aplicacao-texto p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.criterios-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--cor-destaque);
  padding: 25px;
  border-radius: 0 10px 10px 0;
}

.criterios-box h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icone-criterio {
  color: var(--cor-destaque);
}

.lista-criterios {
  list-style: none;
  padding-left: 5px;
}

.lista-criterios li {
  color: #bbb;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.lista-criterios li::before {
  content: "•";
  color: var(--cor-destaque);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.form-visual-box {
  flex: 1;
  max-width: 500px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.form-visual-box:hover {
  border-color: var(--cor-dourado-30);
  box-shadow: 0 20px 60px var(--cor-dourado-20);
}

.cabecalho-form {
  text-align: center;
  margin-bottom: 30px;
}

.cabecalho-form h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
}

.cabecalho-form p {
  color: #888;
  font-size: 0.95rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group label {
  display: block;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
  padding-left: 5px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 15px;
  background: #050505;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--cor-destaque);
  box-shadow: 0 0 10px var(--cor-dourado-20);
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.btn-full {
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacidade-text {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  margin-top: 15px;
}

/* =========================================
   SEÇÃO FAQ
   ========================================= */
.secao-faq {
  padding: 80px 0 120px 0;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--cor-branco-03);
  border: 1px solid var(--cor-branco-05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.faq-item:hover {
  background: var(--cor-branco-05);
  border-color: var(--cor-dourado-30);
}

.faq-item[open] {
  background: rgba(10, 10, 10, 0.8);
  border-color: var(--cor-destaque);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

summary {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-pergunta {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.faq-item[open] .faq-pergunta {
  color: var(--cor-destaque);
}

.faq-seta {
  color: var(--cor-destaque);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-seta {
  transform: rotate(180deg);
}

.faq-resposta {
  padding: 0 25px 25px 25px;
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
  animation: fade-in 0.5s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RODAPÉ
   ========================================= */
.rodape {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 30px 0;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.rodape-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.logo-rodape {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.rodape-coluna p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 25px;
}

.rodape-coluna h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.rodape-links {
  list-style: none;
}

.rodape-links li {
  margin-bottom: 12px;
}

.rodape-links a {
  color: #888;
  font-size: 0.9rem;
  transition: 0.3s;
}

.rodape-links a:hover {
  color: var(--cor-destaque);
  padding-left: 5px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cor-branco-05);
  color: #fff;
  transition: 0.3s;
  border: 1px solid transparent;
}

.social-link:hover {
  background: var(--cor-destaque);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--cor-dourado-40);
}

.rodape-bottom {
  border-top: 1px solid var(--cor-branco-05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rodape-bottom p {
  color: #555;
  font-size: 0.85rem;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-link {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: transparent;
  filter: drop-shadow(0 4px 10px var(--cor-dourado-30));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px var(--cor-dourado-60));
}

/* =========================================
   ANIMAÇÕES DE SCROLL
   ========================================= */
.escondido {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50px);
  transition: all 1s ease;
}

.mostrar {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* =========================================
   FUNDO ANIMADO (PARTÍCULAS E LUZES)
   ========================================= */
.particulas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.particula {
  position: absolute;
  bottom: -10px;
  background: var(--cor-destaque);
  opacity: 0;
  border-radius: 50%;
  animation: flutuar 15s infinite linear;
}

.particula:nth-child(1) {
  left: 10%;
  width: 5px;
  height: 5px;
  animation-duration: 12s;
}

.particula:nth-child(2) {
  left: 20%;
  width: 8px;
  height: 8px;
  animation-duration: 18s;
  animation-delay: 2s;
}

.particula:nth-child(3) {
  left: 35%;
  width: 4px;
  height: 4px;
  animation-duration: 10s;
  animation-delay: 4s;
}

.particula:nth-child(4) {
  left: 50%;
  width: 6px;
  height: 6px;
  animation-duration: 15s;
}

.particula:nth-child(5) {
  left: 65%;
  width: 9px;
  height: 9px;
  animation-duration: 20s;
}

.particula:nth-child(6) {
  left: 80%;
  width: 5px;
  height: 5px;
  animation-duration: 14s;
  animation-delay: 3s;
}

.particula:nth-child(7) {
  left: 90%;
  width: 7px;
  height: 7px;
  animation-duration: 16s;
  animation-delay: 5s;
}

.particula:nth-child(8) {
  left: 5%;
  width: 6px;
  height: 6px;
  animation-duration: 19s;
  animation-delay: 7s;
}

@keyframes flutuar {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.luz-ambiente {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.luz {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: pulsar-luz 10s infinite alternate;
}

.luz-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cor-destaque), transparent);
}

.luz-2 {
  top: 40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #800000, transparent);
  animation-duration: 15s;
}

.luz-3 {
  bottom: -10%;
  left: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
  animation-duration: 12s;
}

@keyframes pulsar-luz {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-text p[style*="color: var(--cor-destaque)"] {
    font-size: 0.95rem !important;
    margin: -15px 0 20px 0 !important;
    line-height: 1.4;
  }

  .hero-img {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .moldura-wrapper {
    padding: 0;
  }

  .moldura-wrapper img {
    max-width: 250px;
  }

  .grupo-botoes {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.3;
  }

  .btn-saiba-mais {
    width: 100%;
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.9rem;
  }

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

  .card {
    text-align: center;
    padding: 40px 20px;
  }

  .card::after {
    left: 0;
    width: 100%;
    height: 3px;
    top: auto;
    bottom: 0;
    width: 0%;
  }

  .card:hover::after {
    width: 100%;
    height: 3px;
  }

  .mentores-grid {
    flex-direction: column;
    align-items: center;
  }

  .mentor-card {
    width: 100%;
  }

  .mentor-foto {
    height: 350px;
  }

  .timeline-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .seta-evolucao {
    transform: rotate(90deg);
    margin: -20px 0;
    font-size: 2rem;
  }

  .card-mes {
    width: 100%;
    max-width: 300px;
    display: block;
  }

  .card-mes.destaque-final {
    transform: none;
    max-width: 320px;
  }

  .aplicacao-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .aplicacao-texto {
    text-align: center;
  }

  .aplicacao-texto p[style*="background: rgba"] {
    font-size: 0.9rem !important;
    padding: 12px !important;
    line-height: 1.5 !important;
  }

  .criterios-box {
    text-align: left;
  }

  .criterios-box p[style*="color: var(--cor-destaque)"] {
    font-size: 0.85rem !important;
    padding: 15px 10px !important;
    line-height: 1.4 !important;
  }

  .form-visual-box {
    width: 100%;
    padding: 30px 20px;
  }

  .cabecalho-form h3 {
    font-size: 1.5rem;
  }

  .cabecalho-form p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .btn-full {
    font-size: 0.95rem;
    padding: 15px 20px;
    white-space: normal;
    line-height: 1.3;
  }

  .privacidade-text[style*="color: var(--cor-destaque)"] {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  .faq-pergunta {
    font-size: 1rem;
    padding-right: 10px;
  }

  .rodape-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .rodape-coluna p {
    margin: 0 auto 25px auto;
  }

  .redes-sociais {
    justify-content: center;
  }

  .rodape-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lista-problemas {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .secao-problemas div[style*="text-align: center"] {
    padding: 20px 15px !important;
    margin-top: 30px !important;
  }

  .secao-problemas div[style*="text-align: center"] h3 {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3;
  }

  .secao-problemas div[style*="text-align: center"] p {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    line-height: 1.4;
  }

  .whatsapp-link {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================
   SEÇÃO EVOLUÇÃO DE RESULTADOS (BENTO GRID)
   ========================================= */
.secao-evolucao {
  padding: 100px 0;
  position: relative;
}

.evolucao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.evolucao-card {
  background: var(--cor-branco-05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.evolucao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.evolucao-card.destaque-final {
  border-color: var(--cor-destaque);
  box-shadow: 0 4px 25px var(--cor-dourado-20);
}

.evolucao-card.destaque-final:hover {
  box-shadow: 0 8px 35px var(--cor-dourado-40);
}

.evolucao-header {
  margin-bottom: 20px;
}

.evolucao-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cor-texto);
  margin-bottom: 8px;
}

.evolucao-subtitle {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.evolucao-imagem {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  min-height: 300px;
}

.evolucao-imagem picture {
  display: block;
  width: 100%;
  max-width: 250px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evolucao-card:hover .evolucao-imagem picture {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.evolucao-imagem img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.evolucao-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.evolucao-valor {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cor-destaque);
  background: var(--gradiente-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  display: block;
}

.evolucao-valor.texto-dourado {
  /* Mantém o mesmo estilo para compatibilidade */
  color: var(--cor-destaque);
  background: var(--gradiente-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile: Carrossel Horizontal com Scroll Snap */
@media (max-width: 900px) {
  .evolucao-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    gap: 20px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--cor-destaque) rgba(255, 255, 255, 0.1);
  }

  .evolucao-grid::-webkit-scrollbar {
    height: 6px;
  }

  .evolucao-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .evolucao-grid::-webkit-scrollbar-thumb {
    background: var(--cor-destaque);
    border-radius: 10px;
  }

  .evolucao-card {
    flex: 0 0 calc(100% - 40px);
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .evolucao-card:hover {
    transform: none;
  }

  .evolucao-card.destaque-final {
    transform: none;
  }

  .evolucao-imagem {
    min-height: 250px;
  }

  .evolucao-imagem picture {
    max-width: 200px;
  }

  .evolucao-valor {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .secao-evolucao {
    padding: 60px 0;
  }

  .evolucao-card {
    padding: 20px;
  }

  .evolucao-header h3 {
    font-size: 1.1rem;
  }

  .evolucao-valor {
    font-size: 1.15rem;
  }
}

/* =========================================
   LIGHTBOX MODAL
   ========================================= */
.evolucao-imagem {
  position: relative;
}

.lightbox-trigger {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
}

/* Overlay escuro que aparece no hover (Desktop) */
.lightbox-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border-radius: 8px;
  pointer-events: none;
}

/* Desktop: Overlay aparece no hover */
@media (hover: hover) and (pointer: fine) {
  .lightbox-trigger:hover::before {
    opacity: 1;
  }
}

/* Indicador de Zoom Premium (SVG) */
.zoom-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.zoom-indicator svg {
  width: 20px;
  height: 20px;
  color: var(--cor-destaque);
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: Indicador sempre visível (discreto) */
.zoom-indicator {
  opacity: 0.85;
  transform: scale(0.9);
}

/* Desktop: Indicador invisível por padrão, aparece no hover */
@media (hover: hover) and (pointer: fine) {
  .zoom-indicator {
    opacity: 0;
    transform: scale(0.8) translateY(5px);
  }

  .lightbox-trigger:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1) translateY(0);
    background: rgba(212, 175, 55, 0.95);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }

  .lightbox-trigger:hover .zoom-indicator svg {
    color: #000;
    transform: scale(1.1);
  }
}

/* Animação da imagem no hover (Desktop) */
.lightbox-trigger picture {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-trigger:hover picture {
    transform: scale(1.03);
    opacity: 0.9;
  }
}

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-modal[aria-hidden="true"] {
  display: none;
}

.lightbox-modal[aria-hidden="false"] {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--cor-texto);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  color: var(--cor-destaque);
  transform: rotate(90deg);
}

.lightbox-close:focus {
  outline: 2px solid var(--cor-destaque);
  outline-offset: 4px;
}

/* Mobile adjustments for lightbox */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-content img {
    max-height: 85vh;
  }

  /* Ajustes do indicador no mobile */
  .zoom-indicator {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
    opacity: 0.9;
  }

  .zoom-indicator svg {
    width: 18px;
    height: 18px;
  }
}
