/* Estilos generales */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f2faff;
    color: #333;
}

/* Encabezado */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(45deg, #7066a2d8, #8c47b4c0);
    color: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Baloo', cursive;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
nav {
    display: flex;
    align-items: center;
}

nav .menu-toggle {
    display: none;
    font-size: 35px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

nav .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav .menu li {
    margin-left: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

nav .menu li a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav .menu li a:hover {
    color: #ff8c42; /* Naranja suave */
    transform: translateY(-5px);
}

/* Sección principal */
.about-section {
    text-align: center;
    padding: 40px 20px;
}

.about-section h1 {
    font-size: 50px;
    color: #5e50a1;
    margin-bottom: 10px;
    font-family: 'Baloo', cursive;
}

.about-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Cuadros de biografía */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.bio {
    background: linear-gradient(135deg, #8c47b4, #c942ff);
    color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.bio:hover {
    transform: translateY(-10px);
}

.bio img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.bio h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.bio-content {
    font-size: 16px;
    text-align: justify;
}

/* Videos */
.videos-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f2faff;
}

.videos-section h2 {
    font-size: 40px;
    color: #5e50a1;
    margin-bottom: 20px;
}

.videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background: #45d3a1;
    color: white;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
}
.mascota {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px; /* Ajusta el tamaño según sea necesario */
    height: 100px;
    border-radius: 50%; /* Hace la imagen redondeada */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Agrega un efecto de sombra */
    overflow: hidden; /* Asegura que el contenido quede dentro del borde redondeado */
    animation: bounce 2s infinite ease-in-out; /* Animación suave */
}

.mascota img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen se ajuste al contenedor */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.materia a {
    text-decoration: none; /* Quita el subrayado */
    color: white; /* Cambia el color del texto */
    font-size: 24px;
    font-weight: bold;
}

.materia a:hover {
    color: #ff8c42; /* Cambia el color del texto al pasar el cursor */
}

@media (max-width: 768px) {
    nav .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(45deg, #5e50a1, #8c47b4); /* Azul y Violeta */
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
        padding: 20px;
        border-radius: 20px;
    }

    nav .menu li {
        margin: 15px 0;
        text-align: center;
        font-size: 28px;
    }

    nav .menu.show {
        display: flex;
    }

    nav .menu-toggle {
        display: block;
    }
}
