/*cuerpo base*/
body {
    margin: 0;
    font-family:"Dancing Script", cursive;
    background-color: #a190f8;
    line-height: 1.3;
    color: #1a0033;
    font-size: 22px;


}
/* cabecera */
header {
    position: sticky;
    top: 0;
    display: flex;
    z-index: 1000;
    background-color: #4b0082;
    color: white;
    justify-content: space-around;
    align-items: center;
    padding: 5px 20px;
}
/*navegacion*/
nav {
    display: flex;
    gap: 15px;
    margin: 0;
}
/* Boton */
.boton {
    background-color: #d4af37;
    color: #1a0033;
    padding: 6px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);

}
/*puntero mouse*/
.boton:hover {
    background-color: #e9bb05;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
/*contenedor*/
.contenedor {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;

}
.bloque {
    text-align: center;
    margin-bottom: 30px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
}
/*imagenes*/
img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 10px;
}
/*Titulos-sub-titulo*/
h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(10, 10, 10);
}

h2 {
    color: #fbfbfb;
    background-color: #3a0f3f;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 15px;
    font-size: 28px;
}
/*parrafos*/
p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1a0033;
    font-weight: 400;
}
/*datos personales*/
.intereses {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
    justify-content: flex-start;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.intereses img {
    width: 300px;
    height: auto;
    border-radius:10px ;
    flex-shrink: 0;
    box-shadow: 0px 4px 10px rgba(0,0,0.2);
    
}
.texto-intereses {
    padding-left:30px ;
    text-align: left;
    flex: 1;
}
.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.datos {
    background-color: #f8f4ff;
    border-left: 8px solid #d4af37;
    padding: 20px;
    margin: 10px auto;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease;

}
.datos i {
    color: #4b0082;
    font-size: 24px;
    margin-bottom: 10px;
}
.datos h3 {
    font-family: 'Dancing Script',cursive;
    margin: 5px 0;
}
/*Espacios*/
section {
    padding: 20px;
}
/* pie de pagina*/
.footer {
    background-color: #4b0082;
    color: white;
    text-align: center;
    margin-top: 50px;
}
/*movil*/
@media (max-width: 600px) {
    header {
        flex-direction: column;
        padding: 10px;
    }
    nav {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
    }
    .boton {
        width: auto;
        font-size: 16px;
    }
    h1 {
        font-size: 20px;
    }
    .intereses {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .intereses img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    .texto-intereses {
        padding-left: 0;
    }
}