html {
    background: url("../assets/img/back01.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

/* Scrollbar personalizado para navegadores compatibles */
::-webkit-scrollbar {
    width: 10px;
    /* Ancho de la barra */
    height: 6px;
    /* Alto de la barra (para scroll horizontal) */
}

::-webkit-scrollbar-thumb {
    background-color: #d17f9e;
    /* Color del scroll (morado) */
    border-radius: 10px;
    /* Bordes redondeados */
}

::-webkit-scrollbar-track {
    background-color: transparent;
    /* Fondo del track transparente */
}

h4 {
    font-family: "Russo One";
}

h3 {
    font-family: "Russo One";
}

.TituloGrande {
    font-size: 7rem;
    font-family: "Russo One";
    font-weight: 400;
    font-style: normal;
}

.TituloMediano {
    font-size: 4rem;
    font-family: "Russo One";
    font-weight: 400;
    font-style: normal;
}

.TituloPeque {
    font-size: 2rem;
    font-family: "Russo One";
    font-weight: 300;
    font-style: normal;
}

.txtContacto {
    font-family: "Roboto";
}



.textoResaltaSpan {
    font-family: "Russo One";
    font-size: 1.8rem;
    font-weight: bold;

}

.filasEquipo {
    padding-top: 40px;
}

.imgequipo {
    width: 75%;
}




.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay p {
    font-family: "Roboto";
    color: #fff;
    font-size: 1.1rem;
    padding: 0 10px;
    margin: 0;
    line-height: 1.5;
    font-size: 1.2rem;
}

.galeriaNombreObra {
    font-family: "Russo One" !important;
    color: #fff;
    font-size: 1.5rem !important;
}

.galeriaSubt {
    font-family: "Roboto" !important;
    font-size: 0.9rem !important;
}



.carousel-item img,
.carousel-item video {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.thumbnails {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnails img {
    height: 80px;
    width: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnails img.active {
    border-color: #007bff;
}

.itemFormacion {
    padding-top: 45px;
    padding-bottom: 25px;
}

.imgFormacion {
    width: 70%;
}

.formacionTitulo {
    padding-top: 50px;
    padding-bottom: 50px;
}

.itemTxtObra {
    text-align: justify;
    padding-right: 20px;
}