*:root{
    --primary-color: #e7a50c;
    --secondary-color: #4a90e2;
    --background-color: #eee;
    --text-color: #fff;
}
.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}
.scol {
    padding-left: 15px;
    padding-right: 15px;
}

#top {
    background-color: var(--primary-color);
    padding: 0.25%;

    span {
        color: #fff;
        font-weight: bold;
    }

    ul {
        margin: 0;
        padding: 0;
        li {
            display: inline;
            margin-right: 15px;
            a {
                color: #fff;
                font-weight: bold;
                text-decoration: none;
                &:hover {
                    color: #000;
                }
            }
        }
    }
}
header {
    background-color: #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    color: var(--text-color);

    img {
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    }

    .input-group {
        input {
            border-top-left-radius: 25px;
            border-bottom-left-radius: 25px;
            border: 1px solid #ccc;
            color: #fff;
        }
        button {
            background-color: var(--primary-color);
            border: 1px solid var(--primary-color);

            border-top-right-radius: 25px;
            border-bottom-right-radius: 25px;

            padding: 2%;

            color: #fff;
            transition: 0.4s;
            &:hover {
                background-color: #333;
                transition: 0.4s;
            }
        }
    }
    #navigation-desktop {
        display: flex;
        justify-content: left;
        margin-top: 18px;
        button {
            margin-left: 5px;
            background-color: transparent;
            border: none;
            color: var(--text-color);
            font-weight: bold;
            transition: 0.4s;
            font-size: 1.2em;
            &:hover {
                color: var(--primary-color);
                cursor: pointer;
                transition: 0.4s;
                border-bottom: 1px solid var(--primary-color);
            }
        }
    }
}

#banner {
    min-height: 25vh;
    height: 25vh;
    .subbanner {
        width: 100%;
        height: 25vh;
        min-height: 25vh;
        background-color: rgba(0, 0, 0, 0.8);

        h1 {
            padding-top: 8vh;
            color: #fff;
            font-size: 3.4em;
            text-transform: uppercase;
            font-weight: bold;
            align-items: center;
            height: 100%;
            text-align: center;
            &::after {
                content: "";
                display: block;
                width: 60px;
                height: 4px;
                background-color: var(--primary-color);
                margin: 10px auto 0 auto;
            }
        }
    }
}

#banner-single {
    min-height: 30vh;
    height: 30vh;
    background-size: cover;
    background-position: 50% 25%;
    position: relative;
    .subbanner {
        width: 100%;
        height: 30vh;
        min-height: 30vh;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
        h1 {
            font-size: 3em;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
        }
        p {
            font-size: 1.2em;
        }
        a{
            color: #fff;
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
}

#breadcrumb {
    background-color: #1A1D24;
    padding: 10px 20px;
    font-size: 1.1em;
    text-align: center;
    color: #fff;
    a {
        color: #fff;
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }
    span {
        color: #fff;
    }
}

.contenido {
    padding: 40px;
    h1 {
        color: var(--primary-color);
        margin-bottom: 40px;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 2px;

       &:after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 10px auto 0 auto;
        }
    }
    p {
        line-height: 1.6;
        margin-bottom: 15px;
        color: var(--text-color);
    }
    a {
        color: var(--secondary-color);
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }


    #container-single {
        font-size: 1.1em;
        color: var(--text-color);
        img {
            max-width: 100%;
            margin: 20px 0;
            border-radius: 15px;
        }
    }
    

    .noticia {
        margin-bottom: 30px;
        border-radius: 15px;
        background-color: #fff;
        .imagen {
            width: 100%;
            height: 250px;
        }
       .detalle {
            margin-top: 10px;
            padding: 15px;
            h3 {
                color: var(--text-color);
                margin-bottom: 10px;
                transition: 0.4s;
              &:hover{
                    color: var(--primary-color);
                    text-decoration: underline;
                    transition: 0.4s;
              }
            }  
            i {
                color: var(--secondary-color);
                margin-right: 5px;
            }
        }
    }
    .cartel {
        width: 100%;
        height: 400px;
        margin-bottom: 30px;
        background-size: cover 100%;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 0;
        .subcartel {
            width: 100%;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5), rgba(0,0,0,0.9));
            border-radius: 15px;
            color: #fff;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            font-size: 1.2em;
            font-weight: bold;
        }
    }
}

#noticias-destacadas {
    #noticia-destacada {
        border: 1px solid #ccc; 
        background: #fff;
        margin-bottom: 15px; 
        border-radius: 5px; 
        overflow: hidden;
        a {
            text-decoration: none;
            color: var(--text-color);
            display: flex;
            &:hover {
                background-color: #f5f5f5;
            }
        }
        &:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: 0.4s;
        }
    }
}

#container-collaborate {
    background-color: #1A1D24;
    padding: 45px;
   .title {
        font-weight: bold;
        font-size: 2.2em;
   }
   .subtitle {
        color: #ccc;
        text-align: justify;
    }
    .btn-web {
        margin-top: 25px;
    }
}

#prefooter {
    background-color: #333;
    padding: 20px 0;

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 40px;
        font-size: 1.3em;
        li {
            display: inline;
            margin-right: 15px;
            a {
                color: #fff;
                font-weight: bold;
                text-decoration: none;
                &:hover {
                    color: #1A1D24;
                }
            }
        }
    }
}
footer {
    background: #1A1D24;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    a {
        color: #fff;
        text-decoration: underline;
        font-weight: bold;
        &:hover {
            text-decoration: underline;
        }
    }
}

.logo {
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.fondoGris { background-color: var(--background-color); }
.fondoNegro { background-color: #1A1D24; color: #fff; }
.btn-web {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.4s;
    &:hover {
        background-color: #333;
        color: #fff;
        transition: 0.4s;
        cursor: pointer;
    }
}
.btn-black {
    background-color: #1A1D24;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.4s;
    &:hover {
        background-color: var(--primary-color);
        color: #fff;
        transition: 0.4s;
        cursor: pointer;
    }
}
.btn-xl {
    padding: 20px 40px;
    font-size: 1.5em;
}
.rounded {
    border-radius: 25px!important;
}

/* Responsive Design */
@media ( min-width: 1200px ) { /* Large devices */
    .mvl { display: none; }
    #noticias-destacadas {
        #destacada-imagen {
            height: 100px;
        }
        font-size: 1em;
    }
}
@media ( max-width: 1199px ) { /* Medium devices */
    .mvl { display: none; }
    #noticias-destacadas {
        #noticia-destacada {
            display: block;
        }
        #destacada-imagen {
            height: 150px;
        }
    }
}
@media ( max-width: 991px ) { /* Small devices */
    .mvl { display: none; }
    #noticias-destacadas {
        #noticia-destacada {
            display: block;
        }
    }
}
@media ( max-width: 767px ) { /* Extra small devices */
   .pc { display: none; }
   .mvl { display: block; }
   #noticias-destacadas {
        #noticia-destacada {
            display: block;
        }
    }
}
@media ( max-width: 575px ) { /* Extra extra small devices */
    .pc { display: none; }
    .mvl { display: block; }
    #noticias-destacadas {
        #noticia-destacada {
            display: block;
        }
    }
}
@media ( max-width: 400px ) { /* Very small devices */
    .pc { display: none; }
    .mvl { display: block; }
    #noticias-destacadas {
        #noticia-destacada {
            display: block;
        }
    }
}