body{margin:0;font-family:Arial;background:#111;color:#fff}html{scroll-behavior:smooth}.top-banner,#banner2{background:#1b1b1b;padding:14px;text-align:center;border-bottom:2px solid #14b866}nav{position:sticky;top:0;display:flex;justify-content:space-between;align-items:center;padding:16px 5%;background:#181818}.logo{height:56px}.hero{text-align:center;padding:80px 20px;max-width:1100px;margin:auto}.hero h1{font-size:3rem}.promo{background:#14b866;padding:25px;border-radius:12px;max-width:700px;margin:30px auto;font-weight:bold}.btn,.btn2,.btnPlano{display:inline-block;padding:15px 28px;margin:10px;border-radius:8px;font-weight:bold;text-decoration:none;transition:.2s}.btn,.btnPlano{background:#14b866;color:#fff}.btn2{border:2px solid #14b866;color:#14b866}.cards{display:flex;gap:25px;flex-wrap:wrap;justify-content:center}.card{width:300px;background:#202020;border:1px solid #2d2d2d;border-radius:14px;padding:25px;text-align:center}.destaque{border:2px solid #14b866}section{padding:60px 5%;max-width:1200px;margin:auto}footer{background:#181818;padding:30px;text-align:center}@media(max-width:768px){nav{flex-direction:column}.card{width:100%}.btn,.btn2,.btnPlano{display:block;width:100%;max-width:350px;margin:10px auto}}
/* ==========================================
   ESTILIZAÇÃO DO FAQ ESTILO NETFLIX
   ========================================== */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: bold;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background-color: #2d2d2d;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #414141;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #2d2d2d;
    border-top: 1px solid #111111;
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Estado Ativo (Aberta) */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Transforma o "+" em um "x" ao abrir */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Permite que o texto deslize suavemente para baixo */
}