.footer-line {
    width: 100%;
    height: 40px;
    background-image: url("../img/vectorlineasfooter.png");
    background-color: transparent;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-container-footer{
    background: url(../img/bg/concrete.webp) lightgray 50% / cover no-repeat;
    padding: 15px 0 0 0;
}
footer {
    background-color: var(--primary-color);
    color: white;
}


.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

@media(min-width: 1024px) {
    .footer {
        display: flex;
        flex-direction: row;
        padding: 50px 100px;
        justify-content: center;
        align-items: stretch;
        gap: 50px;
        align-self: stretch;
    }
}

.footer p {
    color: white;
    text-align: center;
}

.footer__brand {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;

}

@media(min-width: 1024px) {
    .footer__brand {
        padding-right: 20px;
        padding-bottom: 0;
        border-right: 1px solid white;
        border-bottom: none;
    }
}

.footer__brand img {
    height: 80px;
    width: auto;

}

.footer__section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    width: 100%;

    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

@media(min-width: 1024px) {
    .footer__section {
        gap: 10px;
        padding-right: 20px;
        padding-bottom: 0;
        border-right: 1px solid white;
        border-bottom: none;
    }
}

.footer__section:last-child {
    padding: 0;
    border: none;
}

.footer__section h6 {
    font-family: "Akura Popo";
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    font-size: 1.5rem;
    margin: 0;
    text-align: start;

    letter-spacing: 1.3px;

}

@media(min-width: 1024px) {
    .footer__section h6 {
        text-align: center;
    }
}

.footer__section ul {

    font-family: "Akura Popo";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;

    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.footer__section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.footer__social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer__social ul{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: var(--secondary-color);
}

@media(min-width: 1024px) {
    .copyright{
        flex-direction: row;
        padding: 15px 0;;
    }
}

.copyright p {
    color: white;
    font-family: "Akura Popo";
    font-size: 20px;
}

.copyright-separator{
    display: flex;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #9A9A9A;
    border-right: none;
}
@media(min-width: 1024px) {
    .copyright-separator{
        width: auto;
        height: 25px;
        border-bottom: none;
        border-right: #9A9A9A 2px solid;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-button a {
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}