/* ==========================================
   CONFIGURAÇÕES GERAIS E RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #111;
    color: #fff;
    overflow-x: hidden; /* Evita que o site "dance" para os lados no celular */
}

span {
    color: #ccff00; /* Verde limão/neon */
}

/* ==========================================
   HEADER / MENU (Responsivo)
   ========================================== */
header {
    display: flex;
    flex-direction: column; /* No celular, joga o botão para baixo da logo se faltar espaço */
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: #161616;
    border-bottom: 1px solid #222;
    text-align: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.btn-nav {
    background-color: transparent;
    color: #ccff00;
    border: 2px solid #ccff00;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION (BANNER PRINCIPAL)
   ========================================== */
.hero {
    display: flex;
    flex-direction: column-reverse; /* No celular, a foto fica no TOPO e o texto EMBAIXO */
    align-items: center;
    justify-content: center;
    padding: 40px 6%;
    gap: 30px;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2rem; /* Tamanho ideal para telas pequenas */
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Botão Principal chamativo e fácil de clicar no dedão */
.btn-main {
    display: inline-block;
    background-color: #ccff00;
    color: #000;
    padding: 16px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    width: 100%; /* Ocupa a largura da tela no celular, facilitando o clique */
    max-width: 340px;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.2);
    transition: 0.3s;
}

.hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    max-width: 280px; /* Evita que a foto fique gigante no celular */
    height: auto;
    border-radius: 20px;
    border: 3px solid #ccff00;
    object-fit: cover;
}

/* ==========================================
   BENEFÍCIOS
   ========================================== */
.beneficios {
    background-color: #161616;
    padding: 50px 6%;
    text-align: center;
}

.beneficios h2, .planos h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 35px;
}

.cards-beneficios {
    display: flex;
    flex-direction: column; /* Um card embaixo do outro no celular */
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #222;
    padding: 25px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 340px;
}

.card i {
    font-size: 2.2rem;
    color: #ccff00;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==========================================
   PLANOS E PREÇOS
   ========================================== */
.planos {
    padding: 50px 6%;
    text-align: center;
}

.cards-planos {
    display: flex;
    flex-direction: column; /* Um plano embaixo do outro */
    align-items: center;
    gap: 40px; /* Espaço extra para o Badge "Mais Vendido" não encostar no card de cima */
    margin-top: 20px;
}

.plano-item {
    background-color: #161616;
    border: 2px solid #222;
    padding: 35px 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 340px;
    position: relative;
}

/* Destaque do Trimestral */
.plano-item.destaque {
    border-color: #ccff00;
    background-color: #1a1d0e;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccff00;
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.preco {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.preco span {
    font-size: 0.95rem;
    color: #aaa;
}

.total-plano {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 25px;
}

.plano-item ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plano-item ul li {
    margin-bottom: 15px; /* Mais espaço entre as linhas para não amontoar */
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.plano-item ul li i {
    color: #ccff00;
    margin-right: 10px;
    margin-top: 3px; /* Alinha o check perfeitamente com o texto */
}

.btn-plano {
    display: block;
    background-color: #222;
    color: #fff;
    padding: 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.destaque .btn-plano {
    background-color: #ccff00;
    color: #000;
}

/* ==========================================
   RODAPÉ
   ========================================== */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #0b0b0b;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    border-top: 1px solid #161616;
}

/* ==========================================
   MUDANÇAS PARA COMPUTADORES / TABLETS (Telas Maiores)
   ========================================== */
@media (min-width: 769px) {
    header {
        flex-direction: row;
        padding: 20px 8%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        flex-direction: row; /* Lado a lado no PC */
        text-align: left;
        padding: 80px 8%;
        justify-content: space-between;
        min-height: 75vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .btn-main {
        width: auto;
    }

    .hero-img img {
        max-width: 380px;
    }

    .cards-beneficios {
        flex-direction: row; /* Lado a lado no PC */
        justify-content: center;
        gap: 30px;
    }

    .cards-planos {
        flex-direction: row; /* Lado a lado no PC */
        justify-content: center;
        align-items: stretch; /* Deixa os dois cards com a mesma altura */
        gap: 30px;
    }

    .plano-item.destaque {
        transform: scale(1.05); /* Efeito de destaque flutuante apenas no PC */
    }
}