/* =========================
   GLOBAL
========================= */
html, body{
    max-width:100%;
    overflow-x:hidden;
}
*{ box-sizing:border-box; }

/* PAGE */
.planos-page{
    display:flex;
    flex-direction:column;
    gap:32px;
    width:100%;
}

/* HERO */
.planos-hero{
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("/images/fundo.jpeg") center center / cover no-repeat;
    background-color:#000;
    color:#fff;
    padding:36px 20px;
    border-radius:14px;
}

.planos-hero h1{
    font-size:26px;
    margin-bottom:10px;
}

.planos-hero p{
    font-size:14px;
    line-height:1.5;
}

/* CONTEÚDO */
.planos-conteudo{
    display:flex;
    flex-direction:column;
    gap:32px;
}

/* GRID */
.planos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:20px;
}

/* CARD */
.plano-card{
    background:#fff;
    padding:22px;
    border-radius:14px;
    border-left:4px solid #ff0000;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.plano-card h3{
    margin-bottom:10px;
}

.plano-card p{
    font-size:14px;
    margin-bottom:12px;
    color:#334155;
}

.plano-card ul{
    padding-left:18px;
    color:#475569;
}

.plano-card li{
    margin-bottom:6px;
}

/* DESTAQUE */
.plano-card.destaque{
    background:#fff1f2;
    border-left-color:#cc0000;
}

/* INFO */
.planos-info{
    background:#f8fafc;
    padding:20px;
    border-radius:14px;
    color:#334155;
}

/* DESKTOP */
@media(min-width:1024px){
    .planos-hero{
        padding:60px 40px;
    }

    .planos-hero h1{
        font-size:34px;
    }
}