* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root{
    --colorBlack: rgb(0,0,0);
    --colorWhite: rgb(255,255,255);
    --colorGray: rgb(50,50,50);
    --border: 45px;
}

html, body{
    height: 100%;
}

body{
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* footer */
.footer{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px -0px 1px rgba(3, 7, 18, 0.08),
    0px -1px 3px rgba(3, 7, 18, 0.07),
    0px -2px 7px rgba(3, 7, 18, 0.06),
    0px -3px 13px rgba(3, 7, 18, 0.05),
    0px -5px 20px rgba(3, 7, 18, 0.03),
    0px -7px 29px rgba(3, 7, 18, 0.02),
    0px -10px 40px rgba(3, 7, 18, 0.01);
    border-top-left-radius: var(--border);
    border-top-right-radius: var(--border);
}

.contFooter{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--colorBlack);
    border-top-left-radius: var(--border);
    border-top-right-radius: var(--border);
}

.contFooterTwo{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.infoFooter{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 15px;
}

.logoFooter{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: start;
}

/* Tamaño Logo */
.logoFooter img{
    width: 120px;
    height: 120px;
    object-fit: contain;
}
/* Tamaño Logo */

.textFooter{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
}

.textFooter p{
    width: 80%;
    font-size: clamp(0.55rem, 0.6050rem + 0.3205vw, .8400rem);
    font-weight: 450;
    color: var(--colorWhite);
}

.footerSocial{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;  
    text-align: center;
}

.footerSocialTwo{
    width: auto;
    height: auto;
}

.footerSocialTwo h2{
    font-size: clamp(1.5rem, 1.3413rem + 0.7051vw, 2.1875rem);
    color: var(--colorWhite);
    margin-bottom: 15px;
}

.socialIcons{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socialIcons a i{
    font-size: clamp(2.625rem, 2.4375rem + 0.8333vw, 3.4375rem);
    color: var(--colorWhite);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.socialIcons a:hover i{
    transform: scale(1.2);
    opacity: 0.8;
}

.footerReserv{
    width: 90%;
    text-align: center;
    border-top: 1px solid var(--colorWhite);
}

.footerReserv p{
    font-size: clamp(0.8125rem, 0.7837rem + 0.1282vw, 0.9375rem);
    font-weight: 600;
    color: var(--colorWhite);
    margin: 15px 0;
}

@media (max-width: 1400px){
    .logoFooter img{
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1280px){
    .textFooter p{
        width: 95%;
    }
}

@media (max-width: 1000px){
    .logoFooter img{
        width: 90px;
        height: 90px;
    }
    .textFooter p{
        width: 100%;
    }
}

@media (max-width: 768px){
    .contFooterTwo{
        justify-content: center;
        flex-direction: column;
    }
    .footerSocial{
        width: 100%;
        align-items: center;
    }
    .infoFooter{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .logoFooter{
        justify-content: center;
    }
    .textFooter{
        text-align: center;
        justify-content: center;
    }
    .textFooter p{
        width: 75%;
    }
    .footerSocialTwo h2{
        margin-bottom: 10px;
    }
    .socialIcons{
        gap: 10px;
    }
}

@media (max-width: 575px){
    .textFooter p{
        width: 85%;
    }
}

@media (max-width: 450px){
    .logoFooter img{
        width: 85px;
        height: 85px;
    }
    .textFooter p{
        width: 95%;
    }
}