@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arimo", sans-serif;  
    list-style: none;
    text-decoration: none;
}
body{
    overflow-x: hidden;
}

section{
    padding: 50px 9%;
}

.navbar{
    padding: 10px 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.menu li a{
    color: #e43638;
}
.iconos{
    display: flex;
    justify-content: space-between;
    gap: 7px;
}

.iconos p{
    font-size: 12px;
}

.icons{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Sitio en Construccion */

.sitio-construccion{
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url(img/Sitio-construcción.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Footer Section */

.footer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.footer .box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .box h3{
    color: #e43638;
}
.footer .box p{
    color: #545454;
}
.footer .box .telefono{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer .box .telefono i{
    font-size: 22px;
}
.footer .box .correo{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer .box .correo i{
    font-size: 22px;
}
.footer .box .social{
    display: flex;
    gap: 25px;
    font-size: 22px;
    cursor: pointer;
}
.footer .box .social .ri-whatsapp-line{
    color: #075E54;
}
.footer .box .social .ri-facebook-circle-fill{
    color: #3b5998;
}
.footer .box .quienes-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.footer .box .quienes-links li i{
    margin-right: 10px;
    color: #e43638;
    font-size: 16px;
    font-weight: 600;
}
.footer .box .quienes-links li a{
    color: #545454;
}
.footer .box input{
    width: 100%;
    padding: 12px;
    border: 1px solid #e43638;
    border-radius: 20px;
    outline: none;
    margin-top: 15px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.footer .box button{
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: #e43638;
    color: white;
    margin-top: 15px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.derechos-reservados{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.derechos-reservados div{
    width: 100%;
    border-bottom: 2px solid #e43638;
}
.derechos-reservados span{
    color: #e43638;
    font-weight: 500;
}