body {
    font-family: Arial, sans-serif;
    background-color: #50abac;
    font-family: 'paladinsstraight', sans-serif;
}
 
.about-section{
    position: relative;
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    text-align: center;
    margin-bottom: 60px;
}
 
.about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('IMG/Elsa&Anna.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 50%; /* Adjust the opacity as needed */
    z-index: -1; /* Ensure the pseudo-element is behind the content */
}
 
.content-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    justify-content: center;
    transition: all 1s ease-in-out;
    /* Asegura que el contenido esté por encima de la imagen de fondo del before */
    position: relative; 
    z-index: 1; 
}
 
.content-container:hover{
    transform: scale(1.05);
}

/* Estilos para la mascota en la sección "Quiénes Somos" (NUEVO) */
.mascot-intro {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Separador sutil */
}

.mascot-intro .mascot-image {
    max-width: 180px; /* Tamaño de la mascota */
    height: auto;
    border-radius: 50%; /* Circular */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Sombra más pronunciada */
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.mascot-intro .mascot-image:hover {
    transform: scale(1.1); /* Efecto al pasar el mouse */
}

.mascot-intro .mascot-welcome-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #e0e0e0; /* Color de texto más claro */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Sombra de texto para legibilidad */
}
 
.content-container h1, .content-container h2, .content-container h3 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
}
 
.content-container h1 {
    font-size: 36px;
}
 
.content-container h2 {
    font-size: 28px;
}
 
.content-container p, .content-container ul {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}
 
.content-container ul {
    list-style-type: disc;
    margin-left: 40px;
}
 
.content-container ul li {
    margin-bottom: 10px;
}

/* Media Queries para responsividad de la mascota */
@media (max-width: 768px) {
    .mascot-intro .mascot-image {
        max-width: 150px; /* Más pequeña en tablets */
    }
    .mascot-intro .mascot-welcome-text {
        font-size: 1.1em;
    }
    .content-container {
        padding: 15px; /* Ajuste de padding en móviles */
    }
}

@media (max-width: 480px) {
    .mascot-intro .mascot-image {
        max-width: 100px; /* Aún más pequeña en móviles */
    }
    .mascot-intro .mascot-welcome-text {
        font-size: 1em;
    }
    .content-container {
        padding: 10px;
    }
}
