/* =========================================================
   LABELLE IMÓVEIS
   RODAPÉ
========================================================= */


/* =========================================================
   RODAPÉ PRINCIPAL
========================================================= */

.footer {
    position: relative;

    width: 100%;

    padding:
        58px
        0
        0;

    background:
        linear-gradient(
            135deg,
            #021e17 0%,
            #03281f 45%,
            #052f25 100%
        );

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   LABELLE DECORATIVO
========================================================= */

.footer::before {
    content: "LABELLE";

    position: absolute;

    right: -30px;
    bottom: 10px;

    font-family: var(--font-title);

    font-size: 145px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.025
        );

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   LINHA SUPERIOR
========================================================= */

.footer::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 86%;
    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(210, 172, 97, 0.55) 50%,
            transparent 100%
        );
}


/* =========================================================
   ÁREA PRINCIPAL
========================================================= */

.footer-main {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        0.8fr
        1fr;

    gap: 55px;

    padding-bottom: 46px;
}


/* =========================================================
   MARCA
========================================================= */

.footer-brand {
    max-width: 360px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;
}


.footer-logo img {
    display: block;

    width: 230px;

    max-width: 100%;

    height: auto;
}


/* =========================================================
   TEXTO DA MARCA
========================================================= */

.footer-brand > p {
    max-width: 320px;

    margin:
        0
        0
        26px;

    font-family:
        var(--font-primary);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 4px;
}


/* =========================================================
   BOTÃO SOCIAL
========================================================= */

.footer-social a {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(
            210,
            172,
            97,
            0.38
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.02
        );

    color: #d2ac61;

    text-decoration: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   ÍCONES SOCIAIS
========================================================= */

.footer-social a i {
    display: block;

    font-size: 23px;

    line-height: 1;

    color: #d2ac61;
}


/* =========================================================
   HOVER SOCIAL
========================================================= */

.footer-social a:hover {
    border-color: #d2ac61;

    background:
        rgba(
            210,
            172,
            97,
            0.10
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(
            0,
            0,
            0,
            0.16
        );
}


/* =========================================================
   COLUNAS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================================================
   TÍTULOS
========================================================= */

.footer-column h3 {
    position: relative;

    margin:
        0
        0
        22px;

    padding-bottom: 12px;

    font-family:
        var(--font-primary);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #d2ac61;
}


/* LINHA DOURADA */

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background-color:
        #d2ac61;
}


/* =========================================================
   LINKS
========================================================= */

.footer-column > a {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 14px;

    font-family:
        var(--font-primary);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

    color:
        rgba(
            255,
            255,
            255,
            0.80
        );

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   HOVER LINKS
========================================================= */

.footer-column > a:hover {
    color: #d2ac61;

    transform:
        translateX(3px);
}


/* =========================================================
   CONTATO
========================================================= */

.footer-contact {
    min-width: 0;
}


/* =========================================================
   LINKS E ENDEREÇO
========================================================= */

.footer-contact > a,
.footer-contact > span {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 16px;

    font-family:
        var(--font-primary);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.6;

    color:
        rgba(
            255,
            255,
            255,
            0.80
        );
}


/* =========================================================
   ÍCONES CONTATO
========================================================= */

.footer-contact svg {
    width: 18px;
    height: 18px;

    min-width: 18px;

    margin-top: 3px;

    color: #d2ac61;

    stroke: #d2ac61;

    stroke-width: 1.9;
}


/* =========================================================
   RODAPÉ INFERIOR
========================================================= */

.footer-bottom {
    position: relative;

    z-index: 5;

    min-height: 74px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-bottom p {
    margin: 0;

    font-family:
        var(--font-primary);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.6;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );
}


/* =========================================================
   LINKS LEGAIS
========================================================= */

.footer-bottom > div {
    display: flex;

    align-items: center;

    gap: 24px;
}


.footer-bottom > div a {
    position: relative;

    font-family:
        var(--font-primary);

    font-size: 14px;

    font-weight: 400;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    transition:
        color 0.25s ease;
}


.footer-bottom > div a:hover {
    color: #d2ac61;
}


/* =========================================================
   DIVISÓRIA LINKS LEGAIS
========================================================= */

.footer-bottom > div a + a::before {
    content: "";

    position: absolute;

    left: -12px;
    top: 50%;

    width: 1px;
    height: 12px;

    transform:
        translateY(-50%);

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1100px) {

    .footer {
        padding-top: 50px;
    }


    .footer-main {
        grid-template-columns:
            1.2fr
            0.8fr
            0.8fr
            1fr;

        gap: 34px;

        padding-bottom: 40px;
    }


    .footer-logo img {
        width: 210px;
    }


    .footer-brand > p {
        font-size: 15px;
    }


    .footer-column h3 {
        font-size: 17px;
    }


    .footer-column > a,
    .footer-contact > a,
    .footer-contact > span {
        font-size: 15px;
    }


    .footer::before {
        font-size: 110px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .footer {
        padding-top: 44px;
    }


    .footer-main {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            36px
            45px;

        padding-bottom: 38px;
    }


    .footer-brand {
        max-width: 100%;
    }


    .footer-brand > p {
        max-width: 340px;

        font-size: 15px;
    }


    .footer-column h3 {
        font-size: 17px;
    }


    .footer-column > a,
    .footer-contact > a,
    .footer-contact > span {
        font-size: 15px;
    }


    .footer-bottom {
        min-height: 78px;

        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 9px;

        padding:
            16px
            0;
    }


    .footer-bottom p,
    .footer-bottom > div a {
        font-size: 13px;
    }


    .footer::before {
        font-size: 85px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .footer {
        padding-top: 38px;
    }


    .footer-main {
        grid-template-columns:
            1fr;

        gap: 30px;

        padding-bottom: 32px;
    }


    .footer-logo img {
        width: 190px;
    }


    .footer-brand > p {
        max-width: 300px;

        font-size: 14px;
    }


    /* SOCIAIS */

    .footer-social {
        gap: 12px;
    }


    .footer-social a {
        width: 46px;
        height: 46px;
    }


    .footer-social a i {
        font-size: 20px;
    }


    /* COLUNAS */

    .footer-column h3 {
        margin-bottom: 16px;

        font-size: 16px;
    }


    .footer-column > a,
    .footer-contact > a,
    .footer-contact > span {
        font-size: 14px;
    }


    /* PARTE INFERIOR */

    .footer-bottom {
        min-height: auto;

        padding:
            18px
            0
            22px;
    }


    .footer-bottom p,
    .footer-bottom > div a {
        font-size: 12px;
    }


    .footer-bottom > div {
        flex-wrap: wrap;

        gap:
            8px
            20px;
    }


    .footer-bottom > div a + a::before {
        left: -10px;
    }


    .footer::before {
        display: none;
    }

}