/*
Theme Name:  Hello Elementor Child
Theme URI:   
Description: Child Theme do Hello Elementor
Author:      Anderson
Author URI:  
Template:    hello-elementor
Version:     1.0.0
Text Domain: hello-elementor-child
*/

/*
| ---------------------------------
| HEADER
| ---------------------------------
*/
.home header.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.site-header .header-inner {
    justify-content: flex-start !important;
}
.site-header .header-inner .site-navigation {
    padding-left: 5rem;
}
.site-header .header-inner .site-navigation ul li a {
    color: #1A1A1A;
}

/* Mobile  */
@media (max-width: 1024px) {
    .site-header .site-branding .site-logo img {
        width: 130px !important;
    }
    .site-header .header-inner .site-navigation-toggle-holder {
        position: absolute;
        right: 5px;
    }
} /* 1024px */

/*
| ---------------------------------
| HOME
| ---------------------------------
*/

.home .entry-title {
    display: none;
}

/*
| ---------------------------------
| FOOTER
| ---------------------------------
*/

footer.site-footer {
    color: #FFF;
    max-width: none !important;
    padding: 0 !important;
}
.site-footer .container {
    margin: 0 auto;
    width: 1140px;
}
.site-footer .footer-container {
    background: #096341;
    padding: 3rem 0;
}
.site-footer .footer-container .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.site-footer .footer-col {
    flex: 1;
    min-width: 220px;
}

/* Logo */

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Deixa o logo branco */

.site-footer .footer-logo img {
    max-width: 220px;
    height: auto;

    filter: brightness(0) invert(1);
}

/* MENU CENTRAL */

.site-footer .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* CONTATO À DIREITA */

.site-footer .footer-contato {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* TÍTULOS */

.site-footer .footer-col-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* LISTA DE CONTATO */

.site-footer .footer-contato .footer-col-title {
    text-align: left;
    width: 100%;
}
.site-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.site-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

/* Emojis */

.site-footer .footer-contact-list svg {
    margin-top:5px;
}

/* FOOTER BOTTOM */

.site-footer .footer-bottom {
    background: #004A2E;
    font-size: 0.75rem;
    padding: 15px 0;
}

.site-footer .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.site-footer .footer-bottom > div:first-child {
    text-align: left;
}

.site-footer .footer-bottom > div:last-child {
    text-align: right;
}

/* LINKS */

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease;
}

.site-footer a:hover {
    color: #fff;
    opacity: .7;
}

/* RESPONSIVO */

@media (max-width: 1024px) {

    .site-footer .footer-container {
        flex-direction: column;
        gap: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .site-footer .footer-container .container {
        width: 100%;
    }

    .site-footer .footer-brand {
        align-items: center;
    }
    .site-footer .footer-brand img {
        width: 110px;
    }

    .site-footer .footer-nav,
    .site-footer .footer-contato {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        min-width: 0;
        text-align: center;
        width: 100% !important;
    }
    .site-footer .footer-bottom .container {
        align-items: center;
        justify-content: center;
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
    }

    .site-footer .footer-bottom > div:last-child {
        font-size: 0.75rem;
        text-align: center;
    }
} /* 1024px */