* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --principalColor: rgb(91, 6, 114);
    --colorBlack: rgb(0, 0, 0);
    --colorWhite: rgb(255, 255, 255);
    --colorGray: rgb(50, 50, 50);
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contFooter {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--principalColor);
}

.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;
}

.logoFooter img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.textFooter {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
}

.textFooter p {
    width: 80%;
    font-size: clamp(0.75rem, 0.6779rem + 0.3205vw, 1.0625rem);
    color: var(--colorWhite);
}

.footerSocial {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    text-align: center;
    margin-right:10px;
}

.footerSocialTwo {
    width: auto;
    height: auto;
}

.footerSocialTwo h6 {
    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:1100px) {
    .contFooterTwo {
        width: 95%;
    }
}

@media (max-width:1000px) {
    .logoFooter img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width:768px) {
    .contFooterTwo {
        justify-content: center;
        flex-direction: column;
    }

    .footerSocial {
        width: 100%;
        align-items: center;
        margin-right: 7%;
    }

    .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 h6 {
        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%;
    }
}