.header-top {
    background: linear-gradient(to right, rgba(255, 254, 173, 49%), rgba(150, 200, 250, 51%));
    width: 100%;
    display: flex;

}

.header-top .logo {
    height: 100px;
    width: 100px;
    margin-bottom: 10px;
}

.header-top .site-title {
    margin: 0;
    font-size: 2rem;
    color: #333;
    width: 100%;
    padding: 10px 0;
}

.navbar {
   /* background-color: #277fd6;*/
}
/* Bordes y márgenes para los elementos del menú */
.nav-link {
    border: 1px solid #dee2e6;
    padding: 10px 15px; 
    border-radius: 5px; 
    transition: background-color 0.3s, border-color 0.3s; 
    width: 200px;
    text-align: center;
}

.nav-link:hover {
    background-color: #f8f9fa; 
    border-color: #adb5bd; 
}
@media (max-width: 767.98px) {
    .navbar-collapse {
        background-color: #f8f9fa;
        padding: 10px;
    }
    .nav-link {
        width: 100%;
        text-align: left;
        border: none;
        border-bottom: 1px solid #62f328;
    }
    .nav-link:hover {
        background-color: #eaeaea;
        border-color: #ccc;
    }
     .floating-logos a img {
        width: 81px;
        height: auto;
        transition: transform 0.3s;
    }
}

.donar-btn {
    background-color: #28a745; 
    color: white !important; 
}

.donar-btn:hover {
    background-color: #218838; 
}
.floating-logos {
    position: fixed; 
    left: 10px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-logos a img {
    width: 130px;
    height: auto;
    transition: transform 0.3s;
}

.floating-logos a img:hover {
    transform: scale(1.1);
}

.toggle-logos {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: none; /* Oculta el botón por defecto */
}

.toggle-logos button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 46%;
    padding: 9px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-logos button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .floating-logos {
        transform: translateX(-120%);
    }

    .floating-logos.show {
        transform: translateX(0);
    }

    .toggle-logos {
        display: block; /* Muestra el botón solo en pantallas pequeñas */
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icons {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.floating-icons a img:hover {
    transform: scale(1.1);
}
/*Nueva area de sponosr */
.sponsor {
    padding: 20px 0;
    overflow: hidden;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height:136px;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 8); /* Ajusta el tamaño en función de los logos */
    animation: scroll 20s linear infinite;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px; 
    height: 131px; /* Altura del contenedor de cada logo */
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animación */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}







.hero {
    position: relative;
    height: 100vh;
    background: url('images/your-background.jpg') no-repeat center center/cover;
}

  /* Estilo para la sección de pie de página */
.footer_one {
    background-color: rgb(35, 39, 51);
    padding: 60px 0; /* Espaciado en la parte superior e inferior */
    margin-top: 30px;
}

.footer_one h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer_one p {
    font-size: 14px;
    font-family: "Nunito";
    color: #98a2aa;;
    line-height: 2.143;
    margin-bottom: 0;
}

.footer_about_widget, .footer_qlink_widget, .footer_contact_widget, .footer_social_widget {
    margin-bottom: 30px;
}

.footer_qlink_widget ul, .footer_contact_widget ul {
    padding-left: 0;
}

.footer_qlink_widget a, .footer_contact_widget a {
    color: #8a99b3; 
    text-decoration: none;
    transition: color 0.3s;
    line-height: 2.429;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.footer_qlink_widget a:hover, .footer_contact_widget a:hover {
    color: #fffffe; /* Color de los enlaces al pasar el mouse */
}

.footer_social_widget .list-inline-item a {
    Font-size: 14px;
    font-family: "Nunito";
    color: #96a8c8;

}

.footer_social_widget .list-inline-item a:hover {
    color: #ffffff; /* Color de los íconos de redes sociales al pasar el mouse */
}
