.copyright {
    margin-top: 48px;
    border-top: 1px solid var(--color-primary);
    padding: 24px 0 0;
}

.footer {
    padding: 88px 0 18px;
    background-color: var(--color-light);
}

.footer-content h4 {
    margin-bottom: 24px;
}

.footer-content ul.nav-list li::after {
    content: "";
    height: 2px;
    width: 0px;
    display: block;
    background-color: var(--color-primary);
    transition: var(--transition-speed);
}

.footer-content ul.nav-list>li:hover::after {
    width: 30px;
}

.contact-list {
    margin-top: 40px;
}

.footer .address {
    line-height: 30px;
}

/* Botão whatsapp */
.whatsapp-btn {
    align-items: center;
    justify-content: center;

    position: fixed;
    z-index: 100000000;
    font-size: 42px;
    bottom: 20px;
    left: 30px;
    color: #fff;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;

    box-shadow: 1px 6px 24px 0 rgb(7 94 84 / 24%);

    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;

    -webkit-animation: heartbeat 3s ease-in-out infinite both;
    animation: heartbeat 3s ease-in-out infinite both;
}

.whatsapp-btn-msg {
    display: none;
    opacity: 0;
}

.whatsapp-btn:hover {
    cursor: pointer;
    background: #128c7e;
}

.whatsapp-btn:hover .whatsapp-btn-msg {
    opacity: 1;
    display: flex;
    align-items: center;

    position: absolute;
    color: #000;
    font-size: 14px;

    width: max-content;

    left: 70px;
    background-color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
    padding: 8px;

    border-radius: 50px;

    font-family: var(font-family-default);

    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}

.whatsapp-btn img {
    width: 40px;
    height: 45px;
    margin: 0 auto;
    display: flex;
    top: 6px;
}

/* Voltar ao topo */
.cd-top {
    background: var(--color-primary) center 50%;
    background-size: 15px;
    border-radius: 300px;
    bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 18px;
    right: 15px;
    opacity: 0;
    overflow: hidden;
    padding: 20px 0;
    position: fixed;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    visibility: hidden;
    white-space: nowrap;
    width: 40px;
    height: 40px;
    z-index: 100000000;
    -webkit-border-radius: 300px;
    -moz-border-radius: 300px;
    -ms-border-radius: 300px;
    -o-border-radius: 300px;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

.cd-top.cd-is-visible {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

.cd-top.cd-fade-out {
    opacity: 0.5;
}

.cd-top:hover {
    opacity: 1;
}

.cd-top i {
    color: #ffffff;
    margin: 0 auto;
}

.cd-top img {
    width: 12px;
}

.cd-top .upload-two {
    margin-top: -3px;
}

/**
 * ----------------------------------------
 * animation whatsapp-btn
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


/* Pop-up de mudança de endereço */
.address-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow-y: auto;
    /* margin-top: 300px; */
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-self-end {
    justify-self: end;
}

.w-10p {
    width: 10%;
}

@media screen and (min-width:1400px) {
    .max-w-800 {
        width: 800px;
    }

}


.fw-bold {
    font-weight: bold;
}

.flex-col {
    flex-direction: column;
}

.gap-3 {
    gap: 1.5rem;
}

p {
    color: black;
}

.address-popup-modal {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    text-align: justify;

    position: relative;
}

@media screen and (max-width: 1200px) {
    .address-popup-modal {
        max-height: 100%;
        overflow-y: auto;
        padding: 24px;
        max-height: 100vh;
        height: 100vh;

    }

}

.address-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}