* {
    padding: 0;
    margin: 0;
}

/*header: empeze a editar el header*/
header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 5px 5px 1px #BFBFBF;
}

.logo_header {
    width: 120px;

}

/* aca ya con el nav*/
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;

}

nav ul li {
    padding: 10px;
    transition: background-color 0.5s ease;
}

nav ul li:hover {
    background-color: #fa1368;
    border-radius: 10px;

}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    font-weight: 600;

}


/* MAIN: ahora voy a editar el main*/
main {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    background-color: #e3e3e3;

}
/*Este conteiner es igual en todos*/
.container {
    display: flex;
    justify-content: center;
}

.container-letras {
    width: 40%;
    padding-top: 100px;
    padding-left: 80px;
}

.container-letras h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.container-letras p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Noto Sans", sans-serif;
}
/*ES UN BOTON PARA ENTRAR EN LA PAGINA DE TIENDA*/
.boton_tienda {
    background-color: #fa1368;
    color: #fff;
    margin: 4px;
    padding: 10px 25px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    border: none;
    margin-left: 10px;
}

.boton_tienda:hover {
    background-color: #f55791;
    color: #fff;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.container-img {
    width: 90%;
    display: flex;
    justify-content: flex-end;
}

.container-img img {
    width: 100%;
    max-width: 1800px;
    /* Aplica la máscara que desvanece los bordes */
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}
/* Segundo div del main, este es diferente en cada una de las paginas*/
.servicios {
    width: 90%;
    margin: 40px auto;
}

.servicios h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    border: 1px solid #adabab;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    background-color: #fff;
    box-shadow: 5px 5px 5px 0px #DDDBDB;
}
.card p{
    font-family: "Noto Sans", sans-serif;
    font-weight: 800;

}
.card img {
    width: 55px;
    margin-bottom: 15px;
}

/* FOOTER: ahora voy a editar el footer*/
footer {
    background-image: url(./asets/img/img_footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 30px;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
}

footer p {
    font-family: "Noto Sans", sans-serif;
    color: #fff;

}

.logo_footer {
    display: flex;
    flex-direction: column;
    padding-left: 200px;
    align-content: center;
    align-items: center;
}

.logo_footer img {
    width: 60px;
    height: 60px;
    padding-bottom: 10px;
}

.logo_footer h5 {
    font-family: "Yuyu", sans-serif;
    color: #fa1368;
    font-size: 25px;
}

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

.listas_footer {
    display: flex;
    flex-direction: row;
    padding-left: 250px;
    font-family: "Noto Sans", sans-serif;
}

.listas_footer ul {
    padding-left: 40px;
    list-style: none;
}

.listas_footer ul li {
    padding-bottom: 5px;
}

.listas_footer a {
    text-decoration: none;
    color: #fa1368;
}