* {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

#playlist {
    cursor: pointer;
}

#playlist li:hover {
    background: red;
    color: white;
}

@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-ExtraBold.eot');
    src: local('?'), url('../fonts/Almarai-ExtraBold.woff') format('woff'), url('../fonts/Almarai-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: local('?'), url('../fonts/Gilroy-Bold.woff') format('woff'), url('../fonts/Gilroy-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'calligrapher';
    src: url('../fonts/calligrapher.eot');
    src: local('?'), url('../fonts/calligrapher.woff') format('woff'), url('../fonts/calligrapher.ttf') format('truetype');
}

@font-face {
    font-family: 'unisans';
    src: url('../fonts/Uni Sans Heavy.otf');
}

.face {
    text-align: center;
}

.contenido {
    background-repeat: round;
    background-image: url('../images/fondoPag.jpg');
    background-attachment: fixed;
    overflow: scroll;
}

#cnp {
    background: url("../images/banner/pichincha+.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

#histo {
    background: url("../images/banner/historia.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

video {
    width: 102%;
    /* Para mantener la proporción al ajustar el ancho */
}


#banda {
    background: url("../images/banner/banda.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

#audio {
    background: url("../images/banner/audio.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

#contacto {
    background: url("../images/banner/contacto.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

/*=============================================
			PAGINA CONTACTO
=============================================*/
.gmap {
    border: 7px solid #f6f5f0;
    border-radius: 50%;
    height: 450px;
    width: 450px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.redes a {
    color: #000;
    font-size: 3rem;
    margin: 0 0.3rem;
    opacity: 0.6;
    text-decoration: none;
    transition: all .5s ease;
}

.redes a p {
    color: #000;
    font-size: 1rem;

}

.redes a:hover {
    opacity: 1;
}


/*=====  Fin de PAGINA CONTACTO   ======*/

/*=============================================
			PAGINA PICHINCHA+
=============================================*/

.activite a h3 {
    color: #000;
}

.activite a {
    text-decoration: none;
    color: #000;
}

.activite a :hover {
    text-decoration: none;
    color: red;
}

.redondo {
    border-radius: 15px;
}

/*=====  Fin de PAGINA PICHINCHA+  ======*/

/*=============================================
					TOP PAGINA
=============================================*/
.img-slide {
    padding-top: 150px;
    margin: auto;
    width: 350px;
}

.texto {
    top: 500px;
}

.titulo {
    padding: 0px;
    /* margin-top: 500px; */
    font-family: Almarai;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 3px 2px #000;
}

.subti {
    padding: 0px;
    /* margin-left: 2rem; */
    font-family: Gilroy;
    font-size: 2rem;
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.audio {
    display: none;
}

.conta {
    width: 100%;
    height: 500px;
    margin: 1em auto;
    overflow: hidden;
    background: transparent;
}

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 80s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
    0% {
        top: 18em
    }

    100% {
        top: -47em
    }
}


.nav-link:hover {
    background: rgba(254, 0, 0, .4);
    border-radius: 10px 10px 10px 10px;
    color: white;
}

.banner {
    background: url("../images/banner/fondopagina.jpg");
    height: 100vh;
    font-family: unisans;
    background-size: cover;
    background-position: center;
}

.flechaAbajo a {
    margin-top: 100px;
    text-align: center;
    font-size: 3rem;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    animation: flecha-animada 2s ease-in-out infinite;
}

@keyframes flecha-animada {
    from {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

    to {
        transform: translateY(0);
    }
}

/*=====  Fin de TOP PAGINA  ======*/

/*=============================================
PIE DE PAGINA
=============================================*/
.footer {
    background: #282828;
    height: auto;
    color: #fff;
    text-align: center;
}

.footer .redes {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .redes a {
    color: #fff;
    font-size: 2rem;
    margin: 0 0.3rem;
    opacity: 0.6;
    text-decoration: none;
    transition: all .5s ease;
}

.footer .redes a:hover {
    opacity: 1;
}

.ir-arriba {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: #000;
    text-decoration: none;
    z-index: 99999;
    line-height: 0;
    opacity: 0.5;
    transition: all .5s ease;
}

.ir-arriba:hover,
.ir-arriba:focus {
    outline: 0;
    text-decoration: none;
    color: #fff;
    opacity: 1;
}

.ir-arriba:click {
    color: #000;
}


/*=====  Fin de PIE DE PAGINA  ======*/

/*=============================================
CAROUSEL NEWS
=============================================*/

/* Contenedor principal */
.blog-entry {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.blog-entry:hover {
    transform: translateY(-3px);
}

/* Imagen de cabecera */
.blog-entry .block-20 {
    display: block;
    width: 100%;
    height: 220px;
    /* altura fija para que se vea la imagen */
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #b30000;
    /* línea decorativa */
    position: relative;
}

/* Fecha encima de la imagen */
.blog-entry .meta-date {
    background: rgba(179, 0, 0, 0.85);
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}

/* Texto */
.blog-entry .text {
    font-size: 15px;
    line-height: 1.6;
}

/* Enlaces principales (título y botón leer más) */
.blog-entry a {
    color: #b30000;
    /* rojo personalizado */
    text-decoration: none;
}

.blog-entry a:hover {
    color: #800000;
    /* rojo más oscuro al pasar */
}

/* Título */
.blog-entry .tituloNoticia a {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
}

/* Botón Leer más */
.blog-entry .btn-danger {
    border-radius: 15px;
    font-size: 14px;
    padding: 6px 14px;
}

/* Tags */
.blog-entry .meta2 a {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

/*=====  Fin CAROUSEL NEWS  ======*/

/*=============================================
TEAM
=============================================*/

.team .redes {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team .redes a {
    color: #000;
    font-size: 2rem;
    margin: 0 0.3rem;
    opacity: 0.6;
    text-decoration: none;
    transition: all .5s ease;
}

.team .redes a:hover {
    opacity: 1;
}

/*=====  Fin de TEAM  ======*/

/*=============================================
ARTICULOS
=============================================*/

.tag {
    font-size: 0.7rem;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5%;
    position: absolute;
    color: white;
    font-size: 25px;
    background-color: rgba(0, 0, 0, 0.4);
}

/*=====  Fin de ARTICULOS  ======*/


/*=============================================
ESCRITORIO GRANDE=============================================*/
@media (min-width:1200px) {}

/*=====  Fin de ESCRITORIO GRANDE  ======*/


/*=============================================
ESCRITORIO MEDIANO
=============================================*/

@media (max-width:1199px) and (min-width:992px) {

    .nav-link {
        font-size: 0.9em;
    }


}

/*=====  Fin de ESCRITORIO PEQUEÑO  ======*/

/*********************************************
Tablets
**********************************************/

@media (max-width:991px) and (min-width:768px) {


    .nav-link {
        text-align: center;
    }

    .titulo {

        font-size: 3rem;

    }

    .subti {
        font-size: 2rem;

    }

    .img-slide {
        width: 300px;
    }


}

/*=====  Fin de TABLET  ======*/

/*********************************************
Phones
**********************************************/

@media (max-width:767px) {
    .banner {
        background: url("../images/banner/portada1.jpg");
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

    #cnp {
        background: url("../images/banner/pichincha1+.jpg");
        height: 100vh;
        font-family: unisans;
        background-size: cover;
        background-position: center;
    }

    #histo {
        background: url("../images/banner/historia1.jpg");
        height: 100vh;
        font-family: unisans;
        background-size: cover;
        background-position: center;
    }

    #banda {
        background: url("../images/banner/banda1.jpg");
        height: 100vh;
        font-family: unisans;
        background-size: cover;
        background-position: center;
    }

    #audio {
        background: url("../images/banner/audio1.jpg");
        height: 100vh;
        font-family: unisans;
        background-size: cover;
        background-position: center;
    }

    #contacto {
        background: url("../images/banner/contacto1.jpg");
        height: 100vh;
        font-family: unisans;
        background-size: cover;
        background-position: center;
    }

    .nav-link {
        text-align: center;
    }

    .audio {
        display: block;
    }

    .img-slide {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }

    .contenido {
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url('../images/font1.jpg');
        background-attachment: fixed;
        overflow: scroll;
    }

    .tituloNoticia {
        font-size: 1.3em !important;
    }

    /*=============================================
			PAGINA CONTACTO
=============================================*/
    .gmap {
        border: 7px solid #f6f5f0;
        border-radius: 50%;
        height: 250px;
        width: 250px;
        box-shadow: 0px 0px 3px 3px #e7e4dc;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    /*=====  Fin de PAGINA CONTACTO   ======*/
}

/*=====  Fin de PHONES  ======*/





/* Custom styles for the navigation bar */
.navbar-custom-dark {
    background-color: #282828 !important;
    /* Mantenemos el color oscuro */
}

/* Navbar link hover effect */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    /* Color original del texto */
    transition: color 0.3s ease-in-out;
    /* Transición suave para el color */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #000;
    font-weight: bold;
    background-color: #af9494;
    /* Color rojo al pasar el mouse o enfocar */
}

/* Active link style */
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #fff;
    font-weight: bold;
    /* Color rojo para el enlace activo */
}

/* Dropdown menu items color */
.navbar-dark .dropdown-menu {
    background-color: #282828;
    /* Un tono un poco más claro que la nav bar para el fondo del dropdown */
    /* border: 2px solid #ffffff; */
    /* Quitamos el borde si no lo quieres */
}

.navbar-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);

    /* Color del texto de los elementos del dropdown */
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.navbar-dark .dropdown-item:hover,
.navbar-dark .dropdown-item:focus {
    color: #fff;
    font-weight: bold;
    background-color: #af9494;
    /* Fondo ligeramente más claro al pasar el mouse */
}

.navbar-dark .dropdown-item.active {
    color: #fff;
    font-weight: bold;
    /* Color rojo para el elemento activo del dropdown */
    background-color: #af9494;
    /* Fondo para el elemento activo del dropdown */
}

.card {
    background-color: rgba(255, 255, 255, 0.7) !important;
}
