/* ===========================================
   HERO — Página Sobre
=========================================== */
.sobre-hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 60px 0;

    background-image:
        linear-gradient(to bottom, rgba(11,36,71,.85), rgba(11,36,71,.85)),
        url('../img/mapaFundo.png');

    background-size: 90%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #0b2447;
}

.sobre-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.95rem;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .sobre-hero {
        padding: 90px 0;
        background-size: 55%;
    }
}


/* ===========================================
   FEATURES — Correção definitiva 2x2
=========================================== */
.features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;  /* 2 colunas fixas */
    gap: 40px !important;
    width: 100%;
}

/* Tablet (fica 2 colunas ainda) */
@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile — 1 coluna */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}
