*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Lucida Sans', sans-serif;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgb(243, 210, 237);
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.logo{
    display: flex;
    align-items: center;
    gap: 5rem;
}
.logo i{
    font-size: 2rem;
}

.nav-links{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li{
    margin-left: 20px;
}

.nav-links a{
    color: rgb(84, 30, 102);
    list-style: none;
    text-decoration: none; 
}

.rayitas{
    display: flex;
    font-size: 30px;
    color: #832486;
    float: right;
    line-height: 80px;
    margin-right: 10px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}


.hero{
    background-image: url(https://i.pinimg.com/736x/94/6d/e9/946de9c4394836de64669a3ee7f210d1.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: aliceblue;
    padding: 100px;
}

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

.hero h2{
    font-size: 3rem;
    margin-bottom: 20px;
}

.featured-products{
    padding: 50px;
    text-align: center;
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.product-list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product{
    width: 300px;
    margin-bottom: 30px;
}

.product img{
    border-radius: 6px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 500ms ease-out;
}

.product img:hover{
    border-radius: 80px;
    width: 100%;
    height: 200px;
    transition: all 500ms ease-out;
}

.Tarjeta{
    margin: 50px auto;
    width: 80%;
    padding: 10px;
}
.We h2{
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.We p{
    text-align: center;
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.Tarjeta img{
    max-width: 320px;
    float: left;
}

.equipo {
    background-color: #dfb6ed;
    font-family: "Edu AU VIC WA NT Hand", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.equipo h2{
    font-size: 2rem;
}

.equipo-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.miembro img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}


footer{
    background-color: rgb(139, 41, 146);
    color: aliceblue;
    text-align: center;
    padding: 10px;
}

.my-button {
    padding: 10px 20px; /* Espaciado interno */
    background-color: #d12bd7; /* Color de fondo */
    color: white; /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    transition: background-color 0.3s; /* Transición suave para el color de fondo */
}

.my-button:hover {
    background-color: #ea09fa; /* Color de fondo al pasar el mouse */
}

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

.social-media{
    margin-bottom: 25px;
    
}

.social-media a{ /*Enlaces*/
    /*Colores y tamaño de mis iconos*/
    align-items: center;
    padding: 20px;
    color:rgb(243, 222, 213);
    margin: 0 10px;
    font-size: 24px;
}

.newsletter{
    text-align: center;
    margin-bottom: 20px;
}

.newsletter h3{
    margin-bottom: 20px;
}

.newsletter input[type="email"]{
    padding: 8px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter button[type="submit"]{
    background-color: rgb(240, 57, 173);
    color:white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
