/* style.css */
:root{
  --bg: #050505;
  --card: rgba(255,255,255,.06);
  --card-strong: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);

  --text: #fff;
  --muted: rgba(255,255,255,.72);

  --accent: #8407eb;
  --accent2: #0072ff;
  --grad: linear-gradient(90deg, #0072ff, #ffffff);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0);
}

*{ box-sizing:border-box; margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
html{ scroll-behavior:smooth; }

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(5, 5, 5, 0.397), rgba(5, 5, 5, 0.63));
  z-index: 1;
}

body{
  color: var(--text);
  background-color: var(--bg);
  min-height:100vh;
  position: relative;
}

a{ color:inherit; text-decoration:none; }

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

/* Acessibilidade */
.skip-link{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px;
  width:auto; height:auto;
  padding:10px 14px;
  background: rgba(0,0,0,.85);
  border:1px solid var(--stroke);
  border-radius: 10px;
  z-index: 2000;
}

/* Header */
.site-header{
  position: fixed;
  top:0; left:0;
  width:100%;
  z-index:1000;
  padding: 18px 0;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background: rgba(5,5,5,.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.logo{
  font-weight:800;
  letter-spacing: .2px;
  font-size: 1.25rem;
}
.logo span{ color: var(--accent); }

.nav{ display:flex; align-items:center; gap: 18px; }
.nav a{ font-size:.92rem; color: rgba(255,255,255,.88); }
.nav a:hover{ color:#fff; }

.btn-outline{
  border:1px solid rgba(255,255,255,.18);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.28);
}
.btn-outline--soft{
  background: rgba(255,255,255,.02);
}

/* Botões */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  background: var(--grad);
  color:#fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(7, 49, 235, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(11, 7, 235, 0.28);
}

/* Botão Customizável - Agendar Demonstração */
.btn-demo {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  
  /* CONFIGURE AS CORES AQUI */
  background: linear-gradient(90deg, #a10ae783, #0066ff); /* Cor de fundo do botão */
  color: #ffffff; /* Cor do texto */
  
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 212, 255, 0.3); /* Sombra do botão */
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-demo:hover{
  transform: translateY(-2px);
  background: linear-gradient(90deg, #00e4ff, #0076ff); /* Cor no hover */
  box-shadow: 0 18px 38px rgba(0, 212, 255, 0.4);
}

/* Botão Customizável - Chamar WhatsApp */
.btn-whatsapp {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  
  /* CONFIGURE AS CORES AQUI */
  background: linear-gradient(90deg, #25d366, #128c7e); /* Verde WhatsApp */
  color: #ffffff;
  
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-whatsapp:hover{
  transform: translateY(-2px);
  background: linear-gradient(90deg, #2edf73, #15a38a);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.4);
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.92);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
}

/* Hero */
.hero{
  padding: 160px 0 80px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-size:.9rem;
  margin-bottom: 14px;
}
.hero-badge .dot{
  width:10px; height:10px;
  border-radius: 50%;
  background: #d123d1;
  box-shadow: 0 0 0 6px rgba(67, 35, 209, 0.12);
}

.hero h1{
  font-size: 3.15rem;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -.6px;
}
.hero h1 span{ background: var(--grad); -webkit-background-clip: text; background-clip:text; color: transparent; }

.hero p{ color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.hero-sub{ margin-top: 6px; }

.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.hero-points{
  list-style:none;
  display:grid;
  gap: 10px;
  margin: 10px 0 22px;
}
.hero-points li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.84);
}
.hero-points i{
  width:18px; height:18px;
  color: #b38cff;
}

/* Mini testimonials */
.mini-testimonials{
  display:grid;
  gap: 10px;
  margin-top: 18px;
}
.testimonial-mini{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  width: fit-content;
  max-width: 100%;
}
.testimonial-mini img{
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(132,7,235,.55);
}
.testimonial-mini p{
  margin:0;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}

/* Phone + vídeo moldado */
.hero-media{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}
.phone-wrap{
  position: relative;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0));
}

/* a imagem do aparelho */
.phone-frame{
  width: 170%;
  height: auto;
  display:block;
}

/*
  Essa máscara define a área da “tela”.
  Se precisar encaixar milimetricamente, ajuste top/left/width/height.
*/
.phone-screen{
  position:absolute;
  top: 2.3%;
  left: 4.5%;
  width: 92.0%;
  height: 95.2%;
  overflow:hidden;
  border-radius: 44px;
}

/* “molda” o vídeo (recorta laterais e aproxima) */
.phone-video{
  width: 102%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.13);     /* aproxima (ajuste fino aqui) */
  transform-origin: center;
  display:block;
}

/* brilho de vidro */
.phone-glass{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 55%);
  opacity: .55;
  pointer-events:none;
}

/* legenda sob o mock */
.hero-caption{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
  font-size: .92rem;
}

/* Sections */
.section{ padding: 88px 0; }
.section-title{ text-align:center; margin-bottom: 44px; }
.section-title h2{
  font-size: 2.2rem;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.section-title h2 span{ color: #c29bff; }
.section-title p{ color: rgba(255,255,255,.70); max-width: 760px; margin: 0 auto; line-height: 1.6; }

.section-alt{
  background: radial-gradient(circle at 50% 30%, rgba(132,7,235,.18), rgba(5,5,5,0) 60%),
              rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-6px);
  background: var(--card-strong);
  border-color: rgba(132,7,235,.35);
}
.card i{ color: #c29bff; margin-bottom: 14px; }
.card h3{ font-size: 1.08rem; margin-bottom: 10px; }
.card p{ color: rgba(255,255,255,.72); line-height: 1.6; }

/* Stats */
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
}
.stat-value{
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.stat-label{ color: rgba(255,255,255,.72); margin-top: 6px; }

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.test-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.test-card:hover{
  transform: translateY(-6px);
  border-color: rgba(132,7,235,.35);
  background: rgba(255,255,255,.07);
}
.test-card.highlight{
  background: rgba(132,7,235,.14);
  border-color: rgba(132,7,235,.40);
}
.test-icon{ font-size: 1.3rem; margin-bottom: 10px; }
.test-card h4{ margin-bottom: 10px; }
.test-card p{ color: rgba(255,255,255,.76); line-height: 1.55; margin-bottom: 10px; }
.test-card small{ color: rgba(255,255,255,.62); }

/* Bubbles */
.bubbles-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 12px;
  margin-top: 18px;
}
.bubble{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(132,7,235,.30);
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* CTA */
.cta{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.cta h2{ font-size: 1.6rem; letter-spacing: -.3px; }
.cta h2 span{ color:#c29bff; }
.cta p{ margin-top: 8px; color: rgba(255,255,255,.72); }
.cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

/* Footer */
.site-footer{
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.10);
}
.footer-content{
  display:flex;
  justify-content:space-between;
  gap: 24px;
  padding: 28px 20px;
}
.footer-brand p{ color: rgba(255,255,255,.70); margin-top: 10px; }
.footer-badges{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-badges img{ height: 40px; width: auto; opacity:.92; }

.footer-links{
  display:flex;
  gap: 40px;
}
.link-group h4{
  margin-bottom: 10px;
  font-size: .95rem;
  letter-spacing: .2px;
}
.link-group a{
  display:block;
  color: rgba(255,255,255,.70);
  margin: 8px 0;
  font-size: .92rem;
}
.link-group a:hover{ color:#fff; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 0 22px;
}
.footer-bottom p{ color: rgba(255,255,255,.60); text-align:center; }

/* WhatsApp button */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.35);
  z-index: 1200;
  transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: translateY(-2px); }

/* Animations (compatíveis com reveal) */
.animate-fade-in{ animation: fadeIn 1s ease-out both; }
@keyframes fadeIn{ from{ opacity:0; transform: translateY(16px); } to{ opacity:1; transform:none; } }

.animate-float{ animation: float 6s ease-in-out infinite; }
@keyframes float{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* Reveal (JS adiciona .is-visible) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding: 130px 0 60px; text-align:center; }
  .hero-actions{ justify-content:center; }
  .testimonial-mini{ margin: 0 auto; }
  .cards-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .cta{ flex-direction: column; text-align:center; }
  .footer-content{ flex-direction: column; }
  .nav{ display:none; }
}

@media (max-width: 520px){
  .hero h1{ font-size: 2.35rem; }
  .phone-wrap{ max-width: 360px; }
  .phone-screen{ border-radius: 38px; }
}
