/* =====================================================
RESET GLOBAL
===================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:#f9fafb;
    color:#111827;
}

/* =====================================================
CONTAINER PADRÃO
===================================================== */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
HEADER PREMIUM
========================= */

.header{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:999;
}

.header-content{
  max-width:1100px;
  margin:auto;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

.logo img{
  height:40px;
}

/* MENU */
.menu{
  display:flex;
  gap:25px;
}

.menu a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:.3s;
}

.menu a:hover{
  color:#007bff;
}

/* BOTÃO */
.btn-menu{
  background:#25D366;
  color:#fff !important;
  padding:8px 16px;
  border-radius:20px;
}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

@media(max-width:768px){

  .menu{
    position:absolute;
    top:70px;
    right:0;
    background:#fff;
    flex-direction:column;
    width:200px;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

}

/* =====================================================
HERO
===================================================== */
.hero{
  padding-top:120px;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url('../img/img-(1).jpeg') center/cover no-repeat;
  position:relative;
  color:#fff;
}

/* OVERLAY */
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTEÚDO */
.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  text-align:center;
  padding:20px;
}

/* TITULO */
.hero h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
}

/* TEXTO */
.hero p{
  font-size:18px;
  margin-bottom:25px;
  color:#ddd;
}

/* BOTÃO */
.hero .btn{
  display:inline-block;
  background:#25D366;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
}

/* MOBILE */
@media(max-width:768px){

  .hero{
    padding-top:100px;
    min-height:75vh;
  }

  .hero h1{
    font-size:26px;
  }

  .hero p{
    font-size:15px;
  }

  .hero .btn{
    width:100%;
  }

}

/* =====================================================
BOTÕES GERAIS
===================================================== */
.btn{
    background:#22c55e;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
}

.btn:hover{
    background:#16a34a;
}

.big{
    padding:16px 30px;
    font-size:18px;
}

/* =====================================================
SEÇÕES
===================================================== */
.section{
    padding:60px 0;
}

.bg{
    background:#f1f5f9;
}

.section-title{
    text-align:center;
    font-size:30px;
    margin-bottom:40px;
}

/* =========================
SEÇÃO BENEFÍCIOS PREMIUM
========================= */

.benefits{
  padding:80px 20px;
  background:#f8fafc;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.section-subtitle{
  text-align:center;
  color:#666;
  margin-bottom:50px;
}

/* GRID */
.benefits-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.benefit-card{
  background:#fff;
  padding:30px 25px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:all .3s ease;
  opacity:0;
  transform:translateY(40px);
}

/* HOVER */
.benefit-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* ÍCONE */
.icon{
  font-size:32px;
  margin-bottom:15px;
}

/* TITULO */
.benefit-card h3{
  font-size:18px;
  margin-bottom:10px;
}

/* TEXTO */
.benefit-card p{
  font-size:14px;
  color:#666;
}

/* ANIMAÇÃO VISÍVEL */
.benefit-card.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .benefits-grid{
    grid-template-columns:1fr;
  }
}

.card{
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* =========================
CAROUSEL MODERNO LIMPO
========================= */

.carousel-box{
  padding:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
  font-size:28px;
}

/* WRAPPER */
.carousel{
  position:relative;
}

/* VIEWPORT */
.carousel-viewport{
  overflow:hidden;
}

/* TRACK */
.carousel-track{
  display:flex;
  gap:20px;
  transition:transform .6s ease;
}

/* ITENS */
.carousel-track img{
  width:calc((100% - 40px) / 3);
  height:240px;
  object-fit:cover;
  border-radius:14px;
  flex-shrink:0;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* BOTÕES */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:24px;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  z-index:10;
}

.carousel-btn.prev{ left:-10px; }
.carousel-btn.next{ right:-10px; }

/* MOBILE */
@media(max-width:768px){
  .carousel-track img{
    width:100%;
  }
}

/* =========================
FAQ PREMIUM
========================= */

.faq{
  padding:80px 20px;
  background:#fff;
}

.faq .section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:10px;
}

.faq .section-subtitle{
  text-align:center;
  color:#666;
  margin-bottom:40px;
}

/* LISTA */
.faq-list{
  max-width:800px;
  margin:auto;
}

/* ITEM */
.faq-item{
  border-bottom:1px solid #eee;
}

/* PERGUNTA */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  font-size:16px;
  font-weight:600;
  background:none;
  border:none;
  cursor:pointer;
  transition:.3s;
}

.faq-question:hover{
  background:#f8f8f8;
}

/* ÍCONE */
.faq-question i{
  font-style:normal;
  font-size:22px;
  transition:.3s;
}

/* RESPOSTA */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding:0 20px;
}

.faq-answer p{
  padding-bottom:20px;
  color:#555;
}

/* ATIVO */
.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

/* =====================================================
CTA
===================================================== */
.cta{
    background:#1e3a8a;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.cta h2{
    margin-bottom:20px;
}

/* =====================================================
FOOTER
===================================================== */
.footer{
    background:#111827;
    color:white;
    padding:40px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.footer a{
    color:#9ca3af;
    text-decoration:none;
    display:block;
    margin:5px 0;
}

.footer a:hover{
    color:white;
}

/* =====================================================
WHATSAPP FLOAT
===================================================== */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#22c55e;
    color:white;
    padding:15px;
    border-radius:50%;
    font-size:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}