
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background-color: #e3f2fd; /* Azul claro */
    font-family:'Segoe UI',sans-serif;
    background:#f5f5f5;
    color:#333;
}

/* PORTADA */

.portada{
    position:relative;
    height:80vh;
    overflow:hidden;
}

.portada img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}

.overlay h1{
    font-size:4rem;
    margin-bottom:15px;
    letter-spacing:3px;
}

.overlay p{
    font-size:1.4rem;
}

/* SECCIONES */

section{
    width:85%;
    max-width:1100px;

    margin:40px auto;
    padding:30px;

    background:white;
    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    text-align:center;
}

h2{
    color:#5b2c87;
    margin-bottom:20px;
    font-size:2rem;
}

p{
    font-size:1.1rem;
    line-height:1.8;
}

ul{
    list-style:none;
    padding:0;
}

li{
    margin:10px 0;
    font-size:1.1rem;
}

/* IMAGENES */

.imagen-seccion{
    width:100%;
    max-width:800px;
    height:400px;
    object-fit:cover;

    border-radius:15px;

    margin-bottom:20px;

    transition:.5s;
}

.imagen-seccion:hover{
    transform:scale(1.03);
}

/* CARRUSEL */

.carousel{
    margin-top:20px;
}

.carousel img{
    height:550px;
    object-fit:cover;
    border-radius:20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,.5);
    border-radius:50%;
    padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .overlay h1{
        font-size:2.3rem;
    }

    .overlay p{
        font-size:1rem;
    }

    .carousel img{
        height:300px;
    }

    .imagen-seccion{
        height:250px;
    }

    section{
        width:95%;
    }
}
.carousel img{
    height:500px;
    object-fit:cover;
    border-radius:15px;
}
footer{
    background-color: #5b2c87;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

footer p{
    margin: 5px 0;
    font-size: 16px;
}