* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

html, body
{
  background: #0b0b26;
  color: #fff;
  overflow-x: hidden; /* evita scroll horizontal */
  -webkit-overflow-scrolling: touch; /* melhora scroll no iOS */
}

/*.header
{
  margin-top: 28px; /* Ajusta para não ficar em cima da info-topbar 
}*/

.info-topbar 
{
  width: 100%;
  background: #070b15; /* Mesmo azul do tema */
  color: #ffffff;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.info-topbar a 
{
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.info-topbar a:hover 
{
  text-decoration: underline;
}

/* header */
.header 
{
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050510;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-left 
{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -10px; 
}

.logo 
{
  height: 72px;
  transition: 
    transform 0.45s cubic-bezier(0.30, 1, 0.40, 1),
    filter 0.45s ease;
  will-change: transform;
  cursor: pointer;
}

.logo:hover 
{
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.55));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: 1px;
}

.brand-text span 
{
  font-size: 12px;
  opacity: 0.9;
  letter-spacing: 1.5px;
  color: #b3b3ff;
}

.header-left:hover .brand-text
{
  opacity: 0.9;
  transform: translateX(2px);
  transition: 0.3s ease;
}

@media (max-width: 900px) 
{
  .brand-text {
    display: none;
  }

  .logo {
    height: 62px;
  }
}
/* MENU DESKTOP */
.nav 
{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a 
{
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 5px 0;
  font-weight: bold;
}

/* EFEITO HOVER */
.nav a::after 
{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #8b5cf6;
  transition: 0.3s ease;
}

.nav a:hover::after 
{
  width: 100%;
}

.nav a:hover 
{
  color: #c4b5fd;
}

/* BOTÃO WHATSAPP */
.btn-nav {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, #9f7aea, #7c3aed);
  color: #020108;
}

.btn-nav::after 
{
  display: none;
}

/* HAMBURGUER */
.menu-toggle 
{
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100; /* MUITO IMPORTANTE */
}


.menu-toggle span 
{
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.4s;
}

/* ANIMAÇÃO X */
.menu-toggle.active span:nth-child(1) 
{
  transform: rotate(45deg) translate(6px, 6px);
  background: #6d28d9;
}

.menu-toggle.active span:nth-child(2) 
{
  opacity: 0;
  background: #6d28d9;
}

.menu-toggle.active span:nth-child(3) 
{
  transform: rotate(-45deg) translate(6px, -6px);
  background: #6d28d9;
}

/* MOBILE */
@media (max-width: 900px) 
{
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0c0c1a;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Essa e a separação de toda a pagina */
.section 
{
  padding: 90px 8%;
}

.divider
{
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#6d28d9,transparent);
  margin:48px 0;
}



/* =========================
   CTA FINAL
========================= */

.cta-final {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #1a0f2e, #05050a);
  position: relative;
  text-align: center;
}

/* CAIXA */
.cta-box {
  max-width: 880px;
  margin: auto;
  padding: 70px 60px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(139,92,246,.08), rgba(0,0,0,.2));
  border: 1px solid rgba(139,92,246,.25);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  position: relative;
}

/* TAG */
.cta-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b5cf6;
  border: 1px solid rgba(139,92,246,.4);
  border-radius: 999px;
}

/* TÍTULO */
.cta-box h2 {
  font-size: 42px;
  margin-bottom: 26px;
  line-height: 1.25;
  background: linear-gradient(90deg, #fff, #c9b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXTO */
.cta-box p {
  font-size: 17px;
  color: #d6d6e8;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BOTÃO */
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 36px;
  border-radius: 14px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  color: #0b0618;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(139,92,246,.45);
  transition: all .4s ease;
}

/* SUBTEXTO DO BOTÃO */
.cta-btn span {
  font-size: 12px;
  font-weight: 500;
  opacity: .8;
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 70px rgba(139,92,246,.6);
}

/* HOVER DA SECTION */
.cta-box:hover {
  box-shadow: 0 0 80px rgba(139,92,246,.25);
}

/* RESPONSIVO */
@media(max-width: 768px) {
  .cta-box {
    padding: 50px 26px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
}

/* footer ( css todos da footer )*/
.footer-premium {
  background: linear-gradient(180deg, #050505, #000);
  color: #fff;
  padding: 80px 8% 30px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 50px;
  margin-bottom: 40px;
}

/* MARCA */
.footer-brand img {
  height: 70px;
  margin-bottom: 18px;
  transition: transform .4s ease;
}

.footer-brand img:hover {
  transform: scale(1.08) rotate(-1deg);
}

.footer-brand p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

/* SELOS */
.footer-seals {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.seal {
  width: 44px;
  height: 44px;
  background: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.seal:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(139,92,246,.4);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  transition: color .3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #8b5cf6;
  transition: width .3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-box {
  max-width: 320px;
  margin: 20px auto;
}

/* LINK VIRA A CAIXA */
.contact-box a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 12px;

  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border: 1px solid rgba(139, 92, 246, 0.35);

  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  transition: all .35s ease;
}

/* ÍCONE */
.contact-box .icon {
  font-size: 22px;
  background: #8b5cf6;
  color: #000;
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  flex-shrink: 0;

  transition: transform .35s ease;
}

/* TEXTO */
.contact-box .text small {
  display: block;
  font-size: 12px;
  color: #cfcfcf;
  letter-spacing: .5px;
}

.contact-box .text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* HOVER */
.contact-box a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(139,92,246,.35);
  border-color: #8b5cf6;
}

.contact-box a:hover .icon {
  transform: scale(1.1) rotate(-5deg);
}

/* MOBILE */
@media(max-width: 768px){
  .contact-box {
    max-width: 100%;
  }
}


/* REDES SOCIAIS */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

/* CARD DO ÍCONE */
.social-card {
  position: relative;
  width: 56px;
  height: 56px;
  background: #0d0d0d;
  border-radius: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* IMAGEM DO ÍCONE */
.social-card img {
  width: 28px;
  height: 28px;
  filter: brightness(0.9);
  transition: transform .35s ease;
}

/* INFO ESCONDIDA */
.social-info {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%) scale(.9);
  background: #111;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.social-info strong {
  display: block;
  font-size: 13px;
}

.social-info small {
  font-size: 11px;
  color: #aaa;
}

/* HOVER */
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(139,92,246,.45);
}

.social-card:hover img {
  transform: scale(1.15);
}

.social-card:hover .social-info {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* css para os links de social não ficarem azuis, ao se tornar links */
.social-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.social-link * {
  color: inherit;
}

/* MOBILE */
@media(max-width:768px){
  .social-info {
    display: none;
  }
}


/* BASE */
.footer-bottom {
  border-top: 1px solid #111;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media(max-width:768px)
{
  .social span {
    display: none;
  }
}


@keyframes fade 
{
  from 
  {
    opacity:0; 
    transform: translateY(20px)
  }
  to 
  {
    opacity:1; 
    transform: translateY(0)
  }
}

/* ================================
   WHATSAPP FIXO - ABA DESLIZANTE
================================ */

.whatsapp-fixed
{
  position: fixed;
  bottom: 22px;
  right: 22px;
  height: 52px;
  width: 52px;
  padding: 0 14px;
  
  background: #25D366;
  border-radius: 999px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 10px 22px rgba(37,211,102,.35);

  overflow: hidden;
  white-space: nowrap;

  transition: all .35s ease;
  z-index: 9999;
}

.whatsapp-fixed,
.whatsapp-fixed:visited,
.whatsapp-fixed:hover,
.whatsapp-fixed:active 
{
  text-decoration: none;
  color: #fff;
}


/* Ícone */
.whatsapp-fixed svg
{
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* TEXTO ESCONDIDO */
.wa-label
{
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateX(12px);
  transition: all .35s ease;
}

/* HOVER - EXPANSÃO */
.whatsapp-fixed:hover
{
  width: 300px;
}

/* TEXTO APARECE */
.whatsapp-fixed:hover .wa-label
{
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE */
@media(max-width:768px)
{
  .whatsapp-fixed{
    width: 52px !important;
  }

  .whatsapp-fixed:hover{
    width: 52px;
  }

  .wa-label{
    display: none;
  }
}
@keyframes pulse
{
  0%{ transform: scale(1) }
  50%{ transform: scale(1.05) }
  100%{ transform: scale(1) }
}

.whatsapp-fixed
{
  animation: pulse 2.5s infinite;
}

@media(max-width:768px)
{
  .whatsapp-fixed{
    width: 52px !important;
  }

  .whatsapp-fixed:hover{
    width: 52px;
  }

  .wa-label{
    display: none;
  }
}



/* frase de impacto antes do rodape */
.impact {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(124,58,237,.15), #050510);
  overflow: hidden;
}

/* Glow animado */
.impact::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(124,58,237,.25), transparent 60%);
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.impact-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 1;
}

/* Tag */
.impact-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #c4b5fd;
  border: 1px solid rgba(124,58,237,.4);
  text-transform: uppercase;
}

/* Título */
.impact h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 25px;
}

.impact h2 strong {
  color: #a78bfa;
}

/* Texto */
.impact p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 700px;
  margin: auto;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .impact {
    padding: 90px 20px;
  }
}

.reveal-impact {
  opacity: 0;
  transform: translateY(60px) scale(.98);
  transition: all 1.2s ease;
}

.reveal-impact.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* mostra qual pagina esta ativado, em qual ele clicou */
.nav a 
{
  position: relative;
  text-decoration: none;
  color: #ccc;
  padding: 6px 10px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

/* Link ativo */
.nav a.active {
  color: #8b5cf6;
  font-weight: 600;
}

/* Linha animada embaixo */
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #8b5cf6;
  border-radius: 2px;
}


/* botões de CTA para a home */
/* =========================
   BASE
========================= */
.cta-home {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-home h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-home p {
  opacity: 0.85;
  margin-bottom: 40px;
}

/* =========================
   ELITE
========================= */
.cta-elite {
  background: radial-gradient(circle at center, #1a093a, #050510);
}

/* =========================
   URGÊNCIA
========================= */
.cta-urgencia {
  background: linear-gradient(135deg, #0b011f, #14052f);
}

.cta-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(168,85,247,0.2);
  border: 1px solid #a855f7;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* =========================
   CONTATO
========================= */
.cta-contato {
  background: radial-gradient(circle at top, #13072e, #050510);
}

/* =========================
   BOTÕES
========================= */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-outline,
.cta-btn-glow {
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

/* Primário */
.cta-btn-primary {
  background: linear-gradient(135deg, #7b2cff, #a855f7);
  color: #fff;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.9);
}

/* Outline */
.cta-btn-outline {
  border: 2px solid #a855f7;
  color: #c084fc;
}

.cta-btn-outline:hover {
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-3px);
}

/* Glow forte */
.cta-btn-glow {
  background: linear-gradient(135deg, #9333ea, #6d28d9);
  color: white;
  animation: pulseCTA 2s infinite;
}

.cta-btn-glow:hover {
  transform: scale(1.05);
}

@keyframes pulseCTA {
  0% { box-shadow: 0 0 10px rgba(168,85,247,0.4); }
  50% { box-shadow: 0 0 30px rgba(168,85,247,0.9); }
  100% { box-shadow: 0 0 10px rgba(168,85,247,0.4); }
}


/* =========================
   CTA URGÊNCIA
========================= */
.cta-urgency {
  background: linear-gradient(135deg, #9333ea, #6d28d9);
  color: #fff;
  animation: pulseGlow 2s infinite;
}

.cta-urgency:hover {
  transform: scale(1.05);
}

/* Efeito brilho passando */
.cta-primary::after,
.cta-urgency::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.cta-primary:hover::after,
.cta-urgency:hover::after {
  left: 120%;
}

/* Pulsar suave */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(168, 85, 247, 0.4); }
  50% { box-shadow: 0 0 25px rgba(168, 85, 247, 0.8); }
  100% { box-shadow: 0 0 10px rgba(168, 85, 247, 0.4); }
}



/* ========================================= */
/* DESATIVAR TODOS OS REVEALS NO MOBILE/TABLET */
/* ========================================= */

@media (max-width: 1024px) 
{

  .reveal-section,
  .reveal-left,
  .reveal-right,
  .reveal-impact,
  .reveal-cronograma,
  .reveal-willian,
  .reveal-alcateia 
  {
    
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;

  }

}
