/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Nunito Sans',sans-serif;
}

body{
  background:#0f172a;
  color:#e5e7eb;
}

a{
  text-decoration:none;
}

/* ================= HEADER ================= */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 60px;
  background:#0f172a;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  color:#fff;
  font-size:22px;
  font-weight:700;
}

/* NAV DESKTOP */
.nav-desktop{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-desktop a{
  color:#cbd5e1;
  font-weight:500;
}

.nav-desktop a:hover{
  color:#38bdf8;
}

/* BOTÃO PADRÃO */
.btn{
  background:#38bdf8;
  color:#020617 !important;
  padding:10px 22px;
  border-radius:30px;
  font-weight:700;
}

/* MENU TOGGLE (MOBILE) */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#fff;
  border-radius:3px;
}

/* MENU MOBILE */
.nav-mobile{
  position:fixed;
  inset:0;
  background:#020617;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:25px;
  transform:translateX(100%);
  transition:.4s ease;
  z-index:999;
}

.nav-mobile.active{
  transform:translateX(0);
}

.nav-mobile a{
  color:#fff;
  font-size:20px;
}

/* ================= HERO ================= */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:80px 60px;
  align-items:center;
  background:#141645;
}

.hero2{
 
  align-items:center;
  background:#141645;
}


.hero h2{
  font-size:44px;
  line-height:1.2;
}

.hero p{
  margin:20px 0;
  font-size:18px;
  color:#cbd5f5;
}

/* ================= SEÇÕES ================= */
.features,
.benefits,
.cta,
.faq{
  padding:70px 60px;
}

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h3{
  font-size:36px;
}

/* ================= GRID / CARDS ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:#020617;
  padding:30px;
  border-radius:16px;
  text-align: center;
}

.card i{
  font-size:25px;
  color:#38bdf8;
  margin-bottom:15px;
}

.card h4{
  margin-bottom:10px;
}

/* ================= BENEFITS ================= */
.benefits{
  background:#141451;
}

/* ================= CTA ================= */
.cta{
  text-align:center;
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#020617;
}

.cta h3{
  font-size:34px;
  margin-bottom:20px;
}

/* ================= FAQ ================= */
.faq-item{
  background:#020617;
  margin-bottom:15px;
  padding:20px;
  border-radius:10px;
}

/* ================= PLANOS ================= */
.plans-section{
  padding:80px 40px;
  background:#020617;
  text-align:center;
}

.plans-title{
  font-size:36px;
  margin-bottom:10px;
}

.plans-subtitle{
  font-size:18px;
  color:#94a3b8;
  margin-bottom:50px;
}

.plans-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.plan-card{
  background:#0f172a;
  padding:30px;
  border-radius:16px;
  transition:.3s;
}

.plan-card:hover{
  transform:translateY(-8px);
}

.plan-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.price{
  font-size:36px;
  font-weight:800;
  color:#fff;
}

.price2{
  font-size:36px;
  font-weight:800;
  color:#000;
}

.period{
  display:block;
  margin-bottom:20px;
}

.plan-card ul{
  list-style:none;
  text-align:left;
  margin-bottom:25px;
}

.plan-card ul li{
  margin-bottom:10px;
}

.btn-plan{
  background:#38bdf8;
  color:#020617;
  padding:12px 25px;
  border-radius:8px;
  font-weight:700;
  margin-top: 20px;
}

.featured{
  border:2px solid #38bdf8;
}

.vip{
  background:linear-gradient(135deg,#0ea5e9,#38bdf8);
  color:#020617;
}

/* ================= CONTATO ================= */
.contact-section{
  padding:80px 40px;
  background:#0f172a;
  text-align:center;
}

.contact-section h2{
  font-size:40px;
  margin-bottom:40px;
}

.contact-section h2 span{
  color:#22d3ee;
}

.contact-box{
  max-width:900px;
  margin:0 auto;
  padding:40px;
  background:#1e293b;
  border-radius:20px;
  box-shadow:0 0 25px rgba(34,211,238,.5);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.contact-box input,
.contact-box textarea{
  width:100%;
  padding:14px 16px;
  background:#020617;
  border:none;
  border-radius:10px;
  color:#e5e7eb;
}

.contact-box textarea{
  height:160px;
  resize:none;
  margin-bottom:25px;
}

.contact-box button{
  background:#22d3ee;
  color:#020617;
  padding:14px 40px;
  border-radius:30px;
  font-weight:700;
}

/* ================= IMAGEM BENEFITS ================= */
.section-img-benefits{
  display:flex;
  justify-content:center;
  margin:20px 0;
}

.section-img-benefits img{
  width:400px;
  max-width:90%;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}




/* ================= VÍDEOS ================= */



.clientes-videos {
  max-width: 1130px; /* troquei width por max-width */
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 2% auto;
}

.cliente-item {
  max-width: 500px;
  flex: 1;
  border-radius: 6px;
}

.cliente-item iframe{

  border-radius: 6px;
}

.cliente-texto {
  margin-top: 16px;
  font-size: 16px;
     font-family: "Nunito Sans", sans-serif;
    color:#fff;
  font-style: italic;
}

.clientes-btn {
  margin-top: 40px;
}

.btn-clientes {
  background: #FF4000;
  color: #fff;
  padding: 14px 102px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;

}

.btn-clientes:hover {
  background: #d93f13;
}















/* ================= FOOTER ================= */
footer{
  text-align:center;
  padding:30px;
  background:#020617;
  color:#94a3b8;
}

/* ================= RESPONSIVO ================= */
@media(max-width:900px){
  .header{
    padding:14px 20px;
  }

  .nav-desktop{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .hero{
    grid-template-columns:1fr;
    text-align:center;
    padding:60px 20px;
  }

  .features,
  .benefits,
  .cta,
  .faq{
    padding:60px 20px;
  }

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