
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:#fff;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
  overflow-y:hidden;
}

#conteudoLiberado{
  background:#efefef;
  color:#111;
  opacity:0;
  transform:translateY(40px);
  pointer-events:none;
  transition:.35s ease;
}

.section-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.hero{
  min-height:auto;   /* deixa a hero ter altura natural */
  padding:20px 0 20px;
  display:flex;
  align-items:center;
  justify-content:center;;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.06), transparent 35%),
    #050505;
}

.hero-container{
  width:100%;
  max-width:1200px;
  padding:0 10px;
}

.hero-top{
  text-align:center;
  margin-bottom:20px;
}

.tag{
  display:inline-flex;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  font-size:11px;
  letter-spacing:2px;
  margin-bottom:15px;
}

.hero h1{
  font-size:32px;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  line-height:1.1;
  font-weight:600;
  max-width:1100px;
  margin:0 auto;
}

.hero-subtitle{
  margin-top:15px;
  color:#a8a8a8;
  font-size:16px;
  justify-content:center;
  display:flex;
}

.video-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
}

.video-box{
  width:100%;
  max-width:1050px;
  border-radius:30px;
  overflow:hidden;
  background:#000;
  position:relative;
}

#video{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  background:#000;
}


#video::-webkit-media-controls{
  display:none !important;
}

#video::-webkit-media-controls-enclosure{
  display:none !important;
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:100px;
  height:100px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
}

.play-btn::before{
  content:'';
  border-style:solid;
  border-width:18px 0 18px 28px;
  border-color:transparent transparent transparent white;
  margin-left:6px;
}

.play-btn:hover{
  transform:translate(-50%, -50%) scale(1.08);
  background:rgba(255,255,255,.22);
}

.play-btn.hide{
  opacity:0;
  pointer-events:none;
}


#conteudoLiberado.show-content{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.cta{
  padding:40px 0 20px;
}

.cta-box{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:35px;
  padding:70px 40px;
  text-align:center;
}

.cta-box h2{
  font-size:52px;
  margin-bottom:20px;
}

.cta-box p{
  color:#b9b9b9;
  font-size:20px;
  max-width:750px;
  margin:0 auto 40px;
  line-height:1.7;
}

.cta-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:24px 55px;
  background:#d60000;
  color:#fff;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  transition:.3s;
  box-shadow:0 10px 35px rgba(214,0,0,.35);
}
.cta-box a:hover{
  transform:translateY(-4px);
  background:#ff1a1a;
}

.cta-box span{
  display:block;
  margin-top:20px;
  color:#8e8e8e;
}

.benefits,
.gallery,
.testimonials,
.form-section{
  padding:50px 0;
}

.section-title{
  margin-bottom:40px;
}

.section-title.center{
  text-align:center;
}

.section-title span{
  display:block;
  color:#8e8e8e;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:5px;
}

.section-title h2{
  font-size:44px;
  color: #ff1a1a;
}

.section-conver{
    justify-content:left;
    padding:10px 15px;
    text-align:center;
    padding-bottom:10px;
  }

  .section-conver h1{
    color:#ff1a1a;
    font: 38px/1.5 Arial, sans-serif;
  }

  .section-conver p{
    color:#3d3d3d;
    font-size:16px;
    font: 25px/1.5 Arial, sans-serif;
    max-width:890px;
    margin:15px auto 20px;
    line-height:1.5;
    text-align:justify;
  }

  .section-conver-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:24px 55px;
    background:#d60000;
    color:#fff;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    transition:.3s;
  }
  .section-conver-div{
    width:100%;
    height: 70%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .ultima-section{
    margin-top: 15px;
    width:100%;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .ultima-section img{
    align-items: center;
    width:90%;
    height:80%;
  }
  .ultima-section-logo{
    width:100%;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:30px;
  }
  .ultima-section-logo img{
    width:100px;
    height:auto;
    margin-bottom: 20px;
  }

.benefits-grid,
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.benefit-card,
.testimonial-card{
   background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  border-radius:28px;
  padding:35px;
}

.icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:25px;
}

.benefit-card h3{
  font-size:28px;
  margin-bottom:15px;
}

.benefit-card p,
.testimonial-card p{
  color:#b4b4b4;
  line-height:1.7;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
}

.gallery-item{
  height:auto;
  overflow:hidden;
  border-radius:28px;
  background:#000;
  border:none;
  padding:0;
}

.gallery-video{
  width:100%;
  height:auto;
  object-fit:contain;
  aspect-ratio:auto;
  background:#000;
  border-radius:20px;
  display:block;
}

.testimonial-card strong{
  display:block;
  margin-top:25px;
}

.form-box{
  max-width:850px;
  margin:0 auto;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:35px;
  padding:70px 40px;
  text-align:center;
}

.form-box span{
  color:#8e8e8e;
  letter-spacing:2px;
  font-size:13px;
}

.form-box h2{
  font-size:52px;
  margin:20px 0;
}

.form-box p{
  color:#b4b4b4;
  line-height:1.7;
  margin-bottom:40px;
}

.form-placeholder{
  min-height:300px;
  border-radius:24px;
  border:1px dashed rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
}

/* =========================
   RESPONSIVO MOBILE
========================= */

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  .hero{
    min-height:auto;
    padding:30px 0 60px;
  }

  .hero-container{
    padding:0 15px;
  }

  .tag{
    font-size:10px;
    padding:10px 16px;
    letter-spacing:1.5px;
  }

  .hero h1{
    font-size:42px;
    line-height:1;
    letter-spacing:-1.5px;
  }

  .hero-subtitle{
    font-size:16px;
    text-align:center;
    line-height:1.5;
    padding:0 10px;
  }

  .video-box{
    border-radius:20px;
  }

  .play-btn{
    width:75px;
    height:75px;
  }

  .play-btn::before{
    border-width:14px 0 14px 22px;
  }

  .cta{
    padding:20px 0 10px;
  }

  .cta-box{
    padding:35px 20px;
    border-radius:24px;
  }

  .section-conver{
    justify-content:left;
    padding:10px 15px;
    text-align:center;
    padding-bottom:10px;
  }

  .section-conver h1{
    color:#ff1a1a;
    font: 28px/1.5 Arial, sans-serif;
  }

  .section-conver p{
     color:#3d3d3d;
    font-size:16px;
    font: 16px/1.5 Arial, sans-serif;
    max-width:590px;
    margin:15px auto;
    line-height:1.5;
    text-align:justify;
  }

  .section-conver-div{
    width:100%;
    height:auto;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .section-conver-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:24px 55px;
    background:#d60000;
    color:#fff;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    transition:.3s;
  }

  .cta-box a{
    width:100%;
    font-size:15px;
    padding:20px;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h2{
    font-size:30px;
    line-height:1.2;
  }

  .gallery{
    padding:40px 0;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .gallery-item{
    height:auto;
    overflow:hidden;
    padding:0;
    border-radius:20px;
  }

  .gallery-video{
  width:100%;
  height:auto;
  object-fit:contain;
  aspect-ratio:auto;
  background:#000;
  border-radius:20px;
  display:block;
}

  .testimonials,
  .form-section{
    padding:2px;
  }

  .testimonials-grid{
    grid-template-columns:1fr;
  }

  .testimonial-card{
    padding:25px;
    border-radius:20px;
  }

  .form-box{
    padding:35px 20px;
    border-radius:24px;
  }

  .form-box h2{
    font-size:32px;
  }

}