/* E L E M E N T O S */
*{
    font-family: Poppins !important;
    /*OPCIONAL
    margin: 0;
    padding: 0;*/
    box-sizing: border-box;
}

p{
    line-height: 2;
    font-size: 1.1vw;
}

h1{
    text-align: center;
}

ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

::-webkit-scrollbar {
    width: 1vh; /* Ancho de la barra de desplazamiento */
    height: 1vh; /* Altura de la barra de desplazamiento (para barras horizontales) */
}

::-webkit-scrollbar-thumb {
    background: #b6b6b6; /* Color del "thumb" */
    border-radius: 10px; /* Bordes redondeados para el "thumb" */
}



/* C L A S E S */

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Limita el tamaño máximo al 100% del contenedor */
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Quita el borde del iframe */
}

.guia-contenido{
    background-color: #EDEDED;
    border: 1px solid #9B9B9B;
    width: 35vw;
    padding: 0vh 2vw;
    margin: 2vw 0vw;
    font-size: 1vw;
    line-height: 2;
}

.titulo{
    font-size: 2vw;
    text-transform: uppercase;
}

.fecha{
    font-weight:500;
    font-size: 0.8vw;
    color: rgb(157, 167, 176);
}
.contenido-seccion{
    margin-left: 30%;
    margin-right: 30%;
    text-align: left;
}



/*---------------------IMAGEN RESPONSIVA----------------------------- */
.img-container {
    position: relative;
    width: 100%; /* Ajusta al 100% del contenedor padre */
    max-width: 100%; /* No exceder el ancho del contenedor */
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen se ajuste sin distorsión */
}

/*-------------------------------------------------- */

.space-p{
    margin-top: 1vh;
}

.subtitulo-p{
    margin-top: 8vh;
    font-size: 2.2vw;
}

.vineta-negrita {
    font-weight: bold;
    position: relative;
    padding-left: 20px;
}

.vineta-negrita::before {
    content: '•';
    position: absolute;
    left: 0;
    color: black;
    font-size: 1.2em;
}

.vineta-referencial{
    font-size: 1.1vw;
    line-height: 2;
}
