/* Inicio */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* ====== Estilos generales ====== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f7e9e9;
}

.Logo {
    max-width: 200px;
    height: auto;
}

.principal {
    font-family: cursive;
    color: #221e20;
    font-size: 28px;
    margin: 5px 0;
}

.subtitulo {
    text-align: center;
    font-size: 28px;
    color: rgb(118, 34, 197);
    margin-top: 30px;
}

.main {
    padding: 20px;
}

/* ====== Contenido principal ====== */
.contenedor-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px;
}

.bloque {
    width: 45%;
}

.img1, .img2 {
    border: 3px solid #b084cc;
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.texto {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

/* ====== Footer ====== */
footer {
    background-color: #ebd2d2;
    padding: 10px;
    text-align: center;
}

.redes img {
    width: 35px;
    margin: 5px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .bloque {
        width: 100%;
    }
    .principal{
        display: none;
    }
}

@media (max-width: 425px) {
    .principal{
        display: none;
    }
    

    .Logo {
        max-width: 80px;
    }

    .subtitulo {
        font-size: 20px;
    }

    .contenedor-flex {
        gap: 20px;
        margin: 10px auto;
    }

    .texto {
        font-size: 1rem;
        line-height: 1.4;
    }

    .redes img {
        width: 28px;
    }
}

/* Clases */
.galeria-rosada {
    padding: 3rem 1rem;
    text-align: center;
}

.contenedor-galeria {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.item-galeria img {
    width: 200px;
    height: auto;
    max-width: 200px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.item-galeria img:hover {
    transform: scale(1.1);
}

.item-galeria h5 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #b30059;
}

.item-galeria p {
    font-size: 1rem;
    color: #333;
    padding: 0 1rem;
}

/* Contacto */
.subtitulo-uno {
    text-align: center;
    color: rgb(24, 23, 28);
    font-size: 30px;
    margin: 40px;
}

.formulario {
    width: 300px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #dea6a6;
    border-radius: 10px;
    background-color: #d6acac;
    font-family: Arial, sans-serif;
}

.subtitulo-dos {
    font-size: 1rem;
    color: #191618;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.contenedor-mapa {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px; 
    margin: 40px auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contenedor-mapa iframe {
    width: 100%;
    height: 300px; 
    border: 0;
    border-radius: 10px;
}
/* Sobre mí */
.contenedor-presentacion {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.foto{ 
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.texto{
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.4;
    color: black;
    text-align:justify;
}

.redes {
    position: fixed;
    bottom: 10px;
    right: 40px;
    margin: 0 10px;
}

nav a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    margin: 0 10px;
}
/*Testimonio*/
.bloque-testimonios {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    background-color: #ffe6f0; 
    padding: 1rem;
    border-radius: 1rem;
}

.imagen-ro {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto-ro {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.foto-ro:hover {
    transform: scale(1.05);
}

.testimonios {
    flex: 2 1 400px;
}

.testimonios h2 {
    color: #b30059;
    margin-bottom: 1rem;
}

.testimonio h3 {
    color: #800040;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonio p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}
/* Header, body, footer */
header {
    position: sticky;
    top: 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #dbc5c5;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    grid-area:auto;
    padding: 10px;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "header"
        "main"
        "footer";
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url("../multimedia/fondo.jpg");
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

