/* ===========================
    GLOBAL
=========================== */

body {
    margin: 0;
    padding: 0;
    background: #f7f7f9;
    font-family: 'Inter', Arial, sans-serif;
    color: #2b2b2b;
}

/* Header moderno */
header {
    background: linear-gradient(135deg, #8a2be2, #6a1bb7);
    padding: 45px 20px;
    text-align: center;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

header h1 {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 10px 0;
}

header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Área principal */
.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

/* Introdução */
.intro {
    text-align: center;
    margin-bottom: 55px;
}

.intro h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #6a1bb7;
}

.intro p {
    font-size: 17px;
}



/* ===========================
    CARDS DE PLANOS
=========================== */

.planos {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.plano {
    background: #fff;
    border-radius: 22px;
    padding: 35px 25px;
    width: 330px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    position: relative;
    border: 2px solid transparent;
}

/* Animação hover */
.plano:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Plano destaque */
.destaque {
    border: 3px solid #8a2be2;
    transform: scale(1.05);
}

/* Badge econômica */
.badge-economia {
    background: #ffca28;
    color: #000;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    position: absolute;
    top: -10px;
    right: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Títulos de planos */
.plano h2 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #6a1bb7;
    font-weight: 700;
}

/* Preço principal */
.preco {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #222;
}

/* Preço por arte */
.preco-arte {
    background: #f3eaff;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 22px;
    border-left: 6px solid #8a2be2;
    font-weight: 500;
}

/* Benefícios */
.beneficios {
    font-size: 15px;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 28px;
}



/* ===========================
    BOTÕES
=========================== */

.btn {
    background: linear-gradient(135deg, #8a2be2, #6f1bc2);
    color: #fff;
    padding: 15px 25px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background: linear-gradient(135deg, #7a1bd2, #5b17ad);
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}



/* ===========================
    RODAPÉ
=========================== */

footer {
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    color: #555;
    font-size: 14px;
}



/* ===========================
    RESPONSIVIDADE
=========================== */

@media (max-width: 900px) {
    .destaque {
        transform: scale(1.02);
    }
}

@media (max-width: 700px) {
    .planos {
        flex-direction: column;
        align-items: center;
    }

    .plano {
        width: 90%;
        max-width: 360px;
    }
}


.topbar {
    background: #0a7738;
    color: #fff;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-top-login {
    display: block;
    color: #0a7738;
    background: #fff;
    padding: 14px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;

}
