/* === ESTILO VIDEOS === */


main {
    padding-top: 100px;
}

body {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

header h1 {
    font-style: italic;
    font-size: 2.8em;
    margin: 0;
    color: black;
    
}

nav {
    margin-top: 10px;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
    
}

nav a i {
    margin-right: 5px;
}

nav a.activo, nav a:hover {
    color: #0073e6;
}

/* --- CONTENIDO PRINCIPAL --- */
.seccion-videos {
    margin-top: 150px;
    text-align: center;
    padding: 20px;
    
}

.seccion-videos h2 {
    font-size: 2em;
    margin-bottom: 10px;
    
}

.intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.5;
}

.video-container {
    max-width: 800px;
    margin: 40px auto;
    
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.descripcion-video {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- REDES SOCIALES --- */
.redes-sociales {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
    margin-bottom: 40px;
}

.redes-sociales a {
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.redes-sociales a:hover {
    color: #0073e6;
    transform: scale(1.2);
}

