/* ======== Estilo Geral ======== */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #0e0e0e;
    color: #292929;
    line-height: 1.6;
}

/* ======== Cabeçalho ======== */
header {
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 85px;
    border-radius: 6px;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* ======== Seção Hero ======== */
.hero {
    background: linear-gradient(135deg, #1a1a1a, #000);
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.6rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* ======== Recursos ======== */
#recursos {
    background: #141414;
    padding: 80px 10%;
    text-align: center;
}

#recursos h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 50px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background: #1c1c1c;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 30px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.feature h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature p {
    color: #ccc;
}

/* ======== Planos ======== */
.planos {
    background: #0e0e0e;
    padding: 80px 10%;
    text-align: center;
}

.planos h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 50px;
}

/* container flex para os planos */
.planos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* cada plano individual */
.plano {
    background: #1b1b1b;
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 40px;
    width: 320px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.plano:hover {
    transform: translateY(-8px);
    border-color: #b8922f;
}

.plano h3 {
    font-size: 1.4rem;
    color: #d4af37;
}

.plano p {
    color: #ccc;
    margin: 15px 0;
}

.preco {
    font-size: 2rem;
    color: #fff;
    margin: 20px 0;
}

/* Botão */
.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #b8922f;
}

.teste-gratis {
    color: #FFD700; /* texto amarelo dourado */
    background-color: transparent; /* sem fundo */
    font-weight: bold;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 16px;
    box-shadow: none; /* tira a sombra pra deixar mais limpo */
}



/* ======== Rodapé ======== */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}

footer a {
    color: #d4af37;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ======== Responsivo ======== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    nav a {
        display: inline-block;
        margin: 8px 12px;
    }

    .features {
        align-items: center;
    }

    .feature {
        width: 90%;
    }

    .planos-container {
        align-items: center;
        justify-content: left;
    }

    .plano {
        width: 90%;
    }
}
