* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #a65cd4;
}

.encabezado {
    background-color: #c155df;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.encabezado h1 {
    color: white;
    font-size: 30px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.menu a:hover {
    color: #703b85;
}

.portada {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

.portada img {
    width: 50%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.texto {
    width: 40%;
}

.texto h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.texto p {
    font-size: 18px;
    margin-bottom: 20px;
}

.boton {
    background-color: #641780;
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

.boton:hover {
    background-color: #b26bdb;
    color: #3c0f4e;
}

.bienvenida,
.titulo,
.promocion,
.porque {
    text-align: center;
    padding: 40px;
}

.bienvenida h2,
.titulo h2,
.promocion h2,
.porque h2 {
    margin-bottom: 20px;
}

.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.producto {
    background-color: #f7eafa;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.producto h3 {
    margin: 15px 0;
}

.nosotros {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}
.nosotros img {
    width: 30%;
    border-radius: 100px;
}

.informacion {
    padding: 30px;
    text-align: center;
}

.pie {
    background-color: #823797;
    color: white;
    text-align: center;
    padding: 25px;
}

.pie p {
    margin: 10px;
}

@media (max-width: 900px) {
    .encabezado {
        flex-direction: column;
        gap: 20px;
    }
    .menu ul {
        gap: 15px;
    }
    .portada {
        flex-direction: column;
    }
    .portada img {
        width: 80%;
    }
    .texto {
        width: 80%;
        text-align: center;
    }
    .productos {
        grid-template-columns: repeat(2, 1fr);
    }
    .nosotros {
        flex-direction: column;
    }
    .nosotros img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .encabezado {
        padding: 20px;
    }
    .menu ul {
        flex-direction: column;
        text-align: center;
    }
    .portada {
        padding: 20px;
    }
    .portada img {
        width: 100%;
        height: 250px;
    }
    .texto {
        width: 100%;
    }
    .productos {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .producto img {
        height: 250px;
    }
    .nosotros img {
        width: 100%;
    }
}


