  /* Asegura que la imagen del header cubra el ancho completo */
  .parallax-window {
    width: 100%;
    background-size: cover;
    background-position: center center;
}
body {
    font-family: 'Hind', sans-serif; /* Se conserva la fuente original */
    color: #000;
    /* Aplica negrita a TODO el texto dentro del body */
}


            p {
  
                 color: #000000 !important;
   
         }

.footer .footer-list-link {
                         color: #000000 !important;
                     }
/* HEADER Y MENÚ */
.header.navbar-fixed-top {
    background-color: black !important;
}
.navbar .logo-img {
    max-width: 151%;
    width: 300px;
    height: auto;
}
/* Título de la sección del header */
.supre {
    color: #ac0505;
    font-size: 50px;
    background-color: rgba(0,0,0,0.5);
    -webkit-text-stroke: 1px white;
    margin: 0;
}
/* Footer de ancho completo */
.full-width-footer {
    width: 100%;
    background-color: black;
    color: white;
    padding: 20px 0;
    margin: 0;
}
.full-width-footer a {
    color: white;
}
/* Estilos generales para el menú y footer */
.navbar-nav > li > a {
    color: #fff;
}
.footer-seperator {
    background-color: #f9f9f9;
    padding: 40px 0;
}
.footer-list-link {
    color: #000;
}
.footer .footer-logo {
    width: 211px !important;
}
/* Estilos para las tablas (si se requieren) */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #ac0505;
    color: white;
}

.contenedor-tarjetas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.tarjeta {
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
    border: 2px solid black;
    box-shadow: 10px 5px 5px black;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.tarjeta img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.tarjeta img:hover {
    transform: scale(1.05);
}
.tarjeta h3, .tarjeta h4 {
    margin-top: 15px;
    font-size: 24px;
    color: #ac0505;
}
.tarjeta p {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 18px;
}
@media (max-width: 768px) {
    .tarjeta {
        width: 100%;
    }
}

.modal-imagen {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-contenido {
    position: relative;
    max-width: 70%;
    max-height: 70%;
}
.modal-imagen img {
    width: 60%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
}
.cerrar {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.cerrar:hover {
    color: #ff0000;
}