/* Estilos generales para la página Sobre Mí */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff; 
    color: white;
}




/* Secciones alternas con imagen y texto */


.section-alternate-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 7000px;
    margin: auto;
    gap: 40px;
    background-color: #d9d9d9;
}

.section-alternate-1 img {
    width: 450px;
    height: 630px;
    border-radius: 10%;
    border: 3px solid ewhit;

}

.section-alternate-1 .text {
    max-width: 1500px;
    font-size: 28px;
    line-height: 1.5;
    color: #032172;
}

/* Alternar posiciones */
.section-alternate-.section-alternate-1 {
    flex-direction: row-reverse;
}




/* Alternar 2 */

.section-alternate-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 7000px;
    margin: auto;
    gap: 40px;
    background-color: #032172;
}

.section-alternate-2 img {
    width: 450px;
    height: auto;
    border-radius: 10%;
    border: 3px solid ewhit;
}

.section-alternate-2 .text {
    max-width: 1500px;
    font-size: 28px;
    line-height: 1.5;
}

/* Alternar posiciones */
.section-alternate-.section-alternate-2 {
    flex-direction: row-reverse;
}




/* Estilos para los círculos de idioma */
.language-circles {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 10px;
}

.language-circles .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-circles .circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Banderas */
.language-circles .usa {
    background-image: url('USA.png');
}

.language-circles .spain {
    background-image: url('spain.png');
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #9fd5f5;
    margin-top: 50px;
    color: #0b132b;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    /* Acomoda los contenedores en columna */
    .perfil,
    .section-alternate-1, 
    .section-alternate-2 {
        flex-direction: column; /* Poner elementos en columna */
        text-align: center;
        padding: 30px;
    }

    /* Asegura que el texto salga primero */
    .info, 
    .section-alternate-1 .text, 
    .section-alternate-2 .text {
        order: 1;
        max-width: 90%;
        font-size: 18px;
    }

    /* La imagen va después */
    .foto, 
    .section-alternate-1 .foto, 
    .section-alternate-2 .foto {
        order: 2;
    }

    /* Ajuste de tamaño para imágenes */
    .foto img, 
    .section-alternate-1 img, 
    .section-alternate-2 img {
        width: 90%;
        height: auto;
        max-width: 400px;
    }
}

/* Media Query para pantallas aún más pequeñas */
@media (max-width: 480px) {
    .info h2 {
        font-size: 18px;
    }

    .info p, 
    .section-alternate-1 .text, 
    .section-alternate-2 .text {
        font-size: 16px;
        padding: 0 15px;
    }

    .foto img {
        width: 100%;
        max-width: 350px;
    }
}
