/*importados*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');


body {
    font-family:Arial, sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color:-webkit-linear-gradient(90deg, #c983e7,#c347d1,#fd7cf2);/* Chrome 10-25, Safari 5.1-6 */                          background: linear-gradient(90deg, #c983e7,#c347d1,#fd7cf2);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */                                             
    color: #fff;
    padding: 30px;
    text-align: center;
}

.contenedor-imagen {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 500px;
}

.contenedor-imagen img {
    max-width: 100%;
    height: auto;
}

.contenedor-texto {
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-family: 'Lilita One';
    color:#ECD5F1;
}

ul {
    font-size: 1.2em;
    line-height: 1.5;
    font-family: "Roboto Slab";
}

p{
    font-size: 1.2em;
    font-family: "Roboto Slab";
    text-align:center;
}
   

.seccion-botones {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.contenedor-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.boton {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color:#f4c3e5;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.boton:hover {
    background-color: #766bd3;
}

main {
    padding: 20px;
}

.seccion-contenido {
    display: flex;
    justify-content:space-between;
    margin-bottom: 20px;
    border: 1px solid #983966;
    padding: 20px;
    background-color: #e3c2e4;
}

.texto-seccion, .imagen-seccion {
    flex: 1;
    padding: 10px;
}

.texto-seccion {
    margin-right: 10px;
}

.imagen-seccion img {
    max-width: 70%;
    height: auto;
}

footer {
    background-color: #250017;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.foto-1 {
    width: 250px;
    border-radius: 60%;
}

.foto-1:hover{
    filter: grayscale(100%);
}


.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.imagenes {
    display: flex;
    animation: slide 20s infinite linear;
}

.imagenes img {
    max-width: 100%;
    max-height: 300px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



