
/*===============================================INICIALIZAÇÕES====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    background: transparent;
    list-style: none;
}
:root {
    --azul-1: #028DD0;
    --azul-2: #04328E;
    --azul-3: #009dff;
    --vermelho: rgb(251, 4, 4);
    --botao-laranja: #f19a0e;
    --botao-laranja-2: #ef9a13;
    --branca: #ffffff;
    --preta: #111111;
    --texto-title: #555555;
    --bg-branco-2: #edf2f7;
    --bg-branco-3: #f2f2f2;
    --bg-cinza: #f5f5f5;
    --bg-cinza-2: #d3d7d6;
    --bg-cinza-3: #888;
    --opacidade-1: rgba(0, 0, 0, 0.4);
    --opacidade-2: rgba(0, 0, 0, 0.5);
    --linha-header: #e1e9ed28;
    --instagram: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    --whatsapp: #075e54;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
}

:root {
    --shadow: 0 4px 4px 0 rgba(25, 67, 182, 0);
    --shadow-1: 0 1px 0 0 #028bd071;
    --shadow-2: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

:root {
    --button-padding: 8px 15px;
    --button-border-radius: 5px;
    --card-radius: 12px;
}

/*===============================================ANIMAÇÃO SCOLL========================================================*/
.overlay {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

/*====================================================FOOTER====================================================*/
footer {
    background-color: var(--bg-cinza);
    box-shadow: var(--shadow);
    padding: 20px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 300px;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-container .row .footer-col p {
    text-align: left;
    font-size: 1rem;
    color: var(--preta);
    margin-top: 0;
}

.footer-col img {
    width: 70px;
}

.footer-col h5 {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-col p {
    margin-top: 15px;
    color: var(--preta);
}

.footer-links {
    list-style: none;
    padding: 5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--azul-1);
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
    color: var(--preta);
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-icons a {
    font-size: 1.5rem;
}

.social-icons .fa-whatsapp,
.social-icons .fa-instagram,
.social-icons .fa-linkedin,
.social-icons .fa-facebook {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.4s;
    color: var(--branca);
}

.social-icons .fa-whatsapp {
    background: var(--whatsapp);
}

.social-icons .fa-instagram {
    background: var(--instagram);
    color: var(--branca);
}
.social-icons .fa-linkedin {
    background: var(--linkedin);
}

.social-icons .fa-facebook {
    background: var(--facebook);
}

.copyright {
    text-align: center;
    font-size: .9rem;
    color: var(--preta);
    margin-top: 0;
}

.copyright{
    background-color: var(--bg-cinza);
    padding-top: .8rem;
    padding-bottom: .8rem;
    border-top: .08rem solid var(--bg-cinza-2);
}

.copyright a{
    text-decoration: none;
    list-style: none;
    color: var(--azul-1);
}

@media (max-width: 1024px) {
    .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: unset;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links li {
        display: block;
    }

    .contacto {
        display: flex;
        max-width: 100%;
    }

    .footer-container {
        width: 95%;
    }

    .contacto-container i {
        font-size: 0.9rem;
    }
    
    .copyright p{
        font-size: .7rem;
    }

}
    .whatsapp-icon {
        bottom: 10px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
