*{
    font-family: 'Poppins';
}

header {
    &.site-header {
        position: fixed;
        top: var(--wp-admin--admin-bar--height, 0px);
        width: 100%;
        z-index: 1000;
        width: 100%;
        border: none;
        background-color: #fff;
        transition: 300ms all ease;
        box-shadow: 5px 5px 8px 0 #2C2C2C26;

        &.is-scrolled {
            top: calc(var(--wp-admin--admin-bar--height, 0px) - 90px);

            &:hover {
                top: var(--wp-admin--admin-bar--height, 0px);
            }

            &:focus-within {
                top: var(--wp-admin--admin-bar--height, 0px);
            }
        }
    }

    .header-top {
        padding: 20px 0;
        border-bottom: 1px solid #D7D7D7;

        @media (max-width: 991px) {
            display: none;
        }
    }

    .header-tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;

        a.tab {
            background-color: #E54344;
            border-radius: 5px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #fff;
            text-decoration: none;
            flex: 1 1 calc(30% - 32px);
            border: none;
            display: inline-flex;
            text-wrap-mode: nowrap;
        }
    }

    .header-search {
        display: flex;
        width: 100%;
        gap: 32px;

        input {
            padding: 10px 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            border: 1px solid #62737B;
            color: #62737B;
            width: 100%;
        }

        .central-atendimento {
            color: #E54344;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 10px;
            text-wrap-mode: nowrap;
            text-decoration: none;

            span {
                color: #E54344;
                font-weight: 600;
                font-size: 16px;
                font-family: 'Poppins';
            }
        }
    }

    .header-main {
        padding: 18px 0;

        ul.menu {
            display: flex;
            justify-content: space-between;
            /* width: 100%; */
            margin: 0;
            padding: 0;
            /* gap: 100px; */
            list-style-type: none;

            li {
                a {
                    color: #5A5A5A;
                    padding: 20px 50px;
                    border-right: 1px solid #D9D9D9;
                    @media (min-width: 993px) and (max-width: 1200px) {
                        padding: 18px;
                    }
                }

                &:last-child {
                    a {
                        border: none;
                    }
                }
            }
        }

        #menuToggler {
            position: relative;
            width: 40px;
            height: 40px;
            border: none;
            outline: none;
            background: transparent;

            svg {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: 100ms all ease-in-out;
            }

            #cross {
                opacity: 0;
            }

            #burguer {
                opacity: 1;
            }
        }
    }

    .mobile-menu {
        /* background-color: #E54344; */
        border-top: 1px solid #ececec;
        /* position: relative; */
        transition: 300ms all ease-in-out;
        height: 0;
        overflow: hidden;

        &.opened {
            height: 100svh;
        }

        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 36px 0;
            gap: 24px;

            ul.menu-items {
                padding: 0;

                li {
                    list-style-type: none;
                    margin-bottom: 16px;

                    a {
                        color: #E54344;
                        font-size: 20px;
                        font-weight: 600;
                    }
                }
            }

            .tab {
                /* background-color: #fff;
                color: #E54344;

                svg path {
                    fill: #E54344;
                    stroke: #E54344;
                } */
            }
        }
    }
}

a.button {
    width: fit-content;
    height: fit-content;
    border-radius: 5px;
    color: #fff;
    background-color: #E54344;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    gap: 10px;
    font-weight: 600;
}

section {
    margin-bottom: 72px;
    @media (max-width: 992px) {
        margin-bottom: 40px;
    }
}

.hero {
    overflow: hidden;
    position: relative;
    height: 84svh;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.80);
    }

    .cta {
        height: 600px;
        padding-top: 0;

        h2 {
            font-size: 32px;
            color: #fff;
            font-weight: 400;

            span {
                font-weight: 600;
            }
        }

        p {
            font-weight: 400;
            font-size: 20px;

        }

        img {
            filter: brightness(0.8);
        }

        .hero-content {
            left: 0;

            a.button {
                box-shadow: 0px 4px 4px 0px #00000040;
            }
        }

        @media (max-width: 992px) {

            .hero-content {
                h2 {
                    font-size: 24px;
                }

                p {
                    font-size: 16px;
                }
            }
        }

    }

    &.interna {
        margin-top: 192px;
        /* margin-bottom: 0; */
        height: 64svh;

        .hero-content {
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;

            h2 {
                font-size: 32px;
                color: #fff;
                font-weight: 400;

                span {
                    font-weight: 600;
                }
            }

            p {
                font-weight: 500;
                font-size: 24px;
                color: #fff;
            }

            .hero-breadcrumb {
                p {
                    font-weight: 600;

                    a {
                        font-weight: 500;
                    }
                }
            }

            .text {
                color: #fff;
            }
        }

        @media (max-width: 992px) {
            margin-top: 92px;

            .hero-content {
                h2 {
                    font-size: 24px;
                }

                p {
                    font-size: 16px;
                }
            }
        }
    }

    @media (max-width: 992px) {

        .hero-content {
            h2 {
                font-size: 24px;
            }

            p {
                font-size: 16px;
            }
        }
    }
}

.img-sobre {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.nomobile {
    @media (max-width:992px) {
        display: none;
    }
}

h2.title {
    margin: 0;
    padding-left: 15px;
    border-left: 5px solid #E54344;
    font-size: 32px;
    color: #5A5A5A;
    font-weight: 400;

    span {
        font-weight: 600;
    }
}

.breadcrumb {
    background-color: #F5F5F5;
    height: 70px;
    align-content: center;
    margin-bottom: 72px;

    @media (max-width: 992px) {
        margin-bottom: 40px;
    }

    p {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #5A5A5A;

        a {
            color: #5A5A5A;
            font-weight: 500;
        }
    }
}


footer {
    .footer-top {
        padding: 40px 0;
        border: 1px solid #E1E1E1;

        .redes {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }
    }

    .footer-main {
        padding: 40px 0;

        .logos {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;

            .item {
                width: fit-content;
                height: auto;
                display: flex;

                /* flex: 1 1 calc(33% - 40px); */
                img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                }
            }

            @media (max-width:992px) {
                justify-content: center;
            }
        }

        nav {
            ul {
                list-style-type: none;
                padding: 0;

                a {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 180%;
                    color: #5A5A5A;
                }
            }

            @media (max-width:992px) {
                text-align: center;
                .ul {
                    text-align: center;
                }
            }
        }
    }

    h4 {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        color: #5A5A5A;
    }

    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 180%;
        color: #5A5A5A;
    }

    .alfama {
        width: auto;
    }

    .copyright {
        background-color: #F5F5F5;
        padding: 12px 0;
    }

    .texto {
        width: auto;
        display: flex;
        align-items: center;
        gap: 8px;

        .outer {
            padding: 4px;
            border: 1px solid #000;
            border-radius: 3px;
        }

        .ans {
            border: 1px solid #000;
            border-radius: 3px;
            background-color: #2C2C2C;
            background-clip: padding-box;
            padding: 4px;
            color: #fff;
        }

        p {
            margin: 0;
        }
    }
}