/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  color:#1a1a1a;
  line-height:1.8;
  background:#fff;
}

.container{
  width:92%;
  max-width:1400px;
  margin:auto;
}

/* HEADER */

.header{
  background:#fff;
  padding:20px 0;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:100;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-weight:600;
}

.logo{
  font-weight:800;
  font-size:20px;
}

/* HERO */

.hero{
  background: linear-gradient(135deg, #5B4DFF 0%, #6E3CF0 50%, #4A38C8 100%);
  padding:80px 0;
  color:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.hero-text h1{
  font-size:48px;
  font-weight:800;
  margin-bottom:20px;
}

.hero-text p{
  font-size:18px;
  margin-bottom:30px;
  opacity:.9;
}

.hero-image img{
  width:100%;
  height:auto;
  display:block;
}

/* BOTÕES */

.btn-primary,
.btn-principal{
  display:inline-block;
  padding:16px 34px;
  border-radius:50px;
  background:linear-gradient(90deg,#32D2A8,#4B9CFF);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-primary:hover,
.btn-principal:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* HOME PROFUNDA */

.home-profunda{
  padding:30px 0;
}

.home-profunda h1{
  font-size:48px;
  font-weight:800;
  margin-bottom:40px;
}

.intro-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:100px;
  align-items:center;
  margin-bottom:160px;
}

.texto-intro{
  font-size:20px;
  color:#444;
}

.texto-intro p{
  margin-bottom:14px;
}

.intro-img img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
}

/* BLOCOS PADRÃO */

.bloco{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
  margin-bottom:180px;
}

.bloco.reverse{
  direction:rtl;
}

.bloco.reverse .bloco-texto{
  direction:ltr;
}

.bloco-texto{
  font-size:18px;
  color:#444;
}

.bloco-texto h2{
  font-size:36px;
  margin-bottom:25px;
  color:#111;
}

.bloco-texto h3{
  font-size:24px;
  margin-top:50px;
  margin-bottom:20px;
}

.bloco-texto p{
  margin-bottom:14px;
}

.bloco-texto ul{
  margin:25px 0;
  padding-left:22px;
}

.bloco-texto ul li{
  margin-bottom:8px;
}

.bloco-img img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  transition:.4s;
}

.bloco-img img:hover{
  transform:scale(1.02);
}

/* CTA */

.cta-final{
  text-align:center;
  padding:160px 0;
  border-top:1px solid #eee;
}

.cta-final h2{
  font-size:38px;
  margin-bottom:20px;
}

.cta-final p{
  margin-bottom:10px;
}

/* FAQ */

.faq{
  background:#f7f7f7;
  padding:120px 0;
}

.faq-item{
  margin-top:30px;
}

/* PLANOS */

.planos{
  padding:120px 0;
}

.planos-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  margin-top:40px;
}

.plano-card{
  padding:50px;
  border-radius:20px;
  background:#f9f9f9;
  text-align:center;
}

.plano-card.destaque{
  background:linear-gradient(135deg,#5B4DFF,#6E3CF0);
  color:#fff;
}

.preco{
  font-size:28px;
  margin:25px 0;
  font-weight:700;
}

/* CONTATO */

.contato{
  background:#f7f7f7;
  padding:120px 0;
}

.contato form{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:600px;
}

.contato input,
.contato textarea{
  padding:14px;
  border-radius:8px;
  border:1px solid #ddd;
  font-family:'Inter';
}

/* FOOTER */

.footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:30px 0;
  font-size:14px;
}

/* RESPONSIVO */

@media(max-width:992px){

  .hero-grid,
  .intro-grid,
  .bloco{
    grid-template-columns:1fr;
    gap:50px;
  }

  .bloco.reverse{
    direction:ltr;
  }

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

  .home-profunda h1,
  .hero-text h1{
    font-size:34px;
  }

  .hero-image{
    text-align:center;
  }

  .hero-image img{
    max-width:90%;
  }

}

  .bloco.reverse{
    direction:ltr;
  }

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

  .home-profunda h1,
  .hero-text h1{
    font-size:34px;
  }

}

.faq-card{
  background:#fff;
  border-radius:16px;
  padding:25px 30px;
  margin-top:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  cursor:pointer;
  transition:.3s;
}

.faq-card summary{
  list-style:none;
  cursor:pointer;
}

.faq-card summary::-webkit-details-marker{
  display:none;
}

.faq-card h3{
  font-size:20px;
}

.faq-content{
  margin-top:15px;
  color:#444;
}

.faq-topicos{
  margin:20px 0;
  padding-left:0;
  list-style:none;
}

.faq-topicos li{
  margin-bottom:8px;
  font-weight:600;
}

.faq-item{
  background:#fff;
  padding:25px 30px;
  border-radius:14px;
  margin-top:25px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.faq-item h3{
  margin-bottom:10px;
  font-size:20px;
}

.faq-extra{
  margin-top:15px;
}

.faq-extra summary{
  cursor:pointer;
  font-weight:600;
  margin-bottom:15px;
}

.faq-topicos{
  list-style:none;
  padding:0;
  margin:15px 0;
}

.faq-topicos li{
  margin-bottom:6px;
}


/* ============================= */
/* TIMELINE FUNÇÕES DO SISTEMA  */
/* ============================= */

.funcoes-grid{
  position:relative;
  margin-top:60px;
  padding-left:60px;
}

/* Linha lateral */
.funcoes-grid::before{
  content:'';
  position:absolute;
  left:18px;
  top:0;
  width:2px;
  height:100%;
  background:#e5e5e5;
}

/* Card */
.funcao-card{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  align-items:center;
  gap:40px;
  background:#f9f9f9;
  border-radius:18px;
  padding:40px;
  margin-bottom:50px;
  transition:all .25s ease;
  border:1px solid transparent;
}

/* Bolinha da timeline */
.funcao-card::before{
  content:'';
  position:absolute;
  left:-42px;
  top:50%;
  transform:translateY(-50%);
  width:14px;
  height:14px;
  background:#32D2A8;
  border-radius:50%;
  box-shadow:0 0 0 6px #fff;
}

/* Hover leve */
.funcao-card:hover{
  border:1px solid #32D2A8;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
  transform:translateY(-4px);
}

/* Texto */
.funcao-texto h3{
  font-size:24px;
  margin-bottom:15px;
  color:#111;
}

.funcao-texto p{
  color:#555;
  margin-bottom:20px;
  font-size:16px;
  line-height:1.6;
}

/* Botão secundário */
.btn-secundario{
  display:inline-block;
  padding:10px 20px;
  border-radius:40px;
  background:#eaeaea;
  color:#333;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:.2s;
}

.btn-secundario:hover{
  background:#32D2A8;
  color:#fff;
}

/* Imagem */
.funcao-img img{
  max-width:220px;
  width:100%;
  height:auto;
  display:block;
  margin:auto;
}

/* RESPONSIVO */

@media(max-width:992px){

  .funcoes-grid{
    padding-left:30px;
  }

  .funcoes-grid::before{
    left:9px;
  }

  .funcao-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:30px;
  }

  .funcao-card::before{
    left:-21px;
  }

  .funcao-img img{
    margin-top:20px;
    max-width:180px;
  }

}

/* ============================= */
/* VIDEO LITE RESPONSIVO FINAL  */
/* ============================= */

.video-wrapper-lite{
  max-width:1000px;
  margin:0 auto;
  padding:0 20px;
}

.video-inner{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.10);
  background:#000;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}

.video-inner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-inner iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Botão play bonito e centralizado */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  background:rgba(0,0,0,.65);
  border-radius:50%;
  border:none;
}

.play-btn::before{
  content:'';
  position:absolute;
  left:28px;
  top:22px;
  border-style:solid;
  border-width:13px 0 13px 22px;
  border-color:transparent transparent transparent #fff;
}

/* Hover só desktop */
@media (hover:hover){
  .video-inner:hover{
    transform:translateY(-4px);
    box-shadow:0 35px 90px rgba(0,0,0,.15);
  }
}

/* Mobile ajuste */
@media (max-width:768px){

  .video-wrapper-lite{
    padding:0 15px;
  }

  .video-inner{
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
  }

  .play-btn{
    width:60px;
    height:60px;
  }

  .play-btn::before{
    left:23px;
    top:18px;
    border-width:11px 0 11px 18px;
  }

}

/* ========================= */
/* MENU DROPDOWN SISTEMA */
/* ========================= */

.main-nav {
  display:flex;
  align-items:center;
  gap:25px;
}

.menu-dropdown {
  position:relative;
}

.menu-toggle {
  background:none;
  border:none;
  font:inherit;
  cursor:pointer;
  font-weight:600;
  color:inherit;
}

.submenu {
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  border-radius:12px;
  padding:15px 0;
  min-width:260px;
  display:none;
  z-index:1000;
}

.submenu a {
  display:block;
  padding:10px 20px;
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.submenu a:hover {
  background:#f5f5f5;
}

/* Desktop hover */
@media (hover:hover){
  .menu-dropdown:hover .submenu {
    display:block;
  }
}



/* ============================= */
/* FOOTER SEO E RESPONSIVO */
/* ============================= */

.footer {
  background:#111;
  color:#fff;
  padding:60px 0 30px;
  font-size:14px;
}

.footer a {
  color:#ccc;
  text-decoration:none;
}

.footer a:hover {
  color:#fff;
}

.footer-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-col h3 {
  font-size:16px;
  margin-bottom:15px;
  color:#fff;
}

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

.footer-links li {
  margin-bottom:8px;
}

.footer-map iframe {
  width:100%;
  height:180px;
  border:0;
  border-radius:12px;
}

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

.footer-bottom {
  margin-top:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px;
  font-size:13px;
  color:#aaa;
}

/* RESPONSIVO */

@media (max-width:768px){
  .footer-grid {
    grid-template-columns:1fr;
  }

  .footer-map iframe {
    height:220px;
  }
}

.footer-map-lite {
  margin-top:10px;
}

.map-button {
  display:inline-block;
  background:#2c7be5;
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-size:14px;
  text-decoration:none;
  transition:0.3s;
}

.map-button:hover {
  background:#1a5fc4;
}


/* BOTÃO MOBILE - BASE */
.menu-mobile-btn{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* DESKTOP */
.main-nav{
  display:flex;
  align-items:center;
  gap:25px;
}

/* MOBILE */
@media (max-width:900px){

  .menu-mobile-btn{
    display:block;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:70px;
    right:0;
    width:100%;
    background:#fff;
    padding:20px;
    flex-direction:column;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
  }

  .main-nav.active{
    display:flex;
  }

  .menu-dropdown .submenu{
    position:static;
    box-shadow:none;
    padding-left:15px;
    display:none;
  }

  .menu-dropdown.active .submenu{
    display:block;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.align-center {
  align-items: center;
}

.reverse {
  direction: rtl;
}

.reverse .bloco-texto {
  direction: ltr;
}

.center-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.bloco {
  padding: 80px 0;
}

.bloco-img img {
  width: 100%;
  border-radius: 20px;
}