*{
    font-family: system-ui;
}
body{
    margin: 0;
}
div, section{
    position: relative;
}
img{
    width: 100%;
}
.margin{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.flex{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.center{
    text-align: center;
}
header .logo{
    flex-grow: 1;
    max-width: 33%;
}
header .menu{
    flex-grow: 3;
    text-align: right;
}
header .menu ul li{
    list-style: none;
}
.hero{
    background-image: url(images/maquila.webp);
    background-size: cover;

}
.hero .content{
    backdrop-filter: brightness(0.5) blur(3px);
    padding-top: 10vw;
    color: white;
}
.nosotros .cards .card{
    width: 1;
    width: 33%;

}
.nosotros .cards .card h3{
    transform: translateY(500%);
    transition: all 1s;
}
.nosotros .cards .card:hover h3{
    transform: translateY(0);
}
.nosotros .cards .card p{
    opacity: 0;
    transition: all 1s;
}
.nosotros .cards .card:hover p{
    opacity: 1;
}
#opiniones{
    background-color: rgb(49, 112, 156);
    color: white;
    padding: 1vw 0;
}
button{
    background-color: rgb(49, 112, 156);
    color: white;
    font-size: 1.2rem;
    border: 0px solid;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
}
footer{
    background-color: rgb(30, 67, 93);
    color: white;
    padding: 0.5rem;
}