body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section h2 {
    color: #4f5d69;
}

.btn-acento {
    background-color: #74c404;
    color: #fff;
    border: none;
}

.btn-acento:hover {
    background-color: #5ba703;
}

/* home.css */

.hero-section {
    position: relative;
    /* -- IMPORTANTE: como el CSS est en /css/public/home.css,
       subimos dos niveles para llegar a /img -- */
    background: url("../../img/congresorescate2025.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-section .container {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.bg-custom {
    background-color: #39434d !important;
}
footer.bg-custom ul li a {
    color: #fff;
    text-decoration: none;
}
footer.bg-custom ul li a:hover {
    text-decoration: underline;
}
footer.bg-custom .ms-4 {
    margin-left: 1.5rem !important;
}


