/* =========================
   HERO BOLSO MISIONERO
========================= */

.bolso-hero {
    background: linear-gradient(
        rgba(27, 94, 32, 0.9),
        rgba(15, 15, 15, 0.9)
    );
    color: #ffffff;
}

/* =========================
   CONTENIDO PRINCIPAL
========================= */

.bolso {
    max-width: 1100px;
    margin: 80px auto 120px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* =========================
   TARJETAS
========================= */

.bolso-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 26px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
}

.bolso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.bolso-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1b5e20;
    font-weight: 800;
}

.bolso-card ul {
    list-style: none;
}

.bolso-card ul li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #2f4f2f;
}

.bolso-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.bolso-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.bolso-card ul li {
    margin-bottom: 6px;
    line-height: 1.4;
}
.bolso-card.alerta {
    border-left: 5px solid #e74c3c;
    background-color: #fff3f3;
}
