@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;700&family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');
@import url("https://use.typekit.net/erp0mrk.css");

$gibson: 'canada-type-gibson', sans-serif;
$sourcesans: 'Source Sans Pro', sans-serif;
$mulish: 'Mulish', sans-serif;

$branco : #ffffff;
$preto  : #171923;

$verdeescuro     : #005757;
$verdeescuro2     : #006666;
$verdemedio     : #008080;
$verdeclaro     : #55BCBD;

$cinzaescuro : #695E59;
$cinzamedio: #7F7F7F;

$cinza8  : #58595B;
$cinza7  : #6D6E71;
$cinza6  : #808285;
$cinza5  : #939598;
$cinza4  : #B2B2B2;
$cinza3  : #BCBEC0;
$cinza2  : #F0F0F0;
$cinza1  : #EDEDED;
$cinza05 : #F1F2F2;

/*COMEÇO RESET*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin        : 0;
    padding       : 0;
    border        : 0;
    outline       : 0;
    font-weight   : inherit;
    font-style    : inherit;
    font-size     : 100%;
    font-family   : inherit;
    vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

body {
    line-height: 1;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: separate;
    border-spacing : 0;
}

caption,
th,
td {
    text-align : left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: """";
}

/*FIM RESET*/

::-moz-selection {
    color     : $branco;
    background: $verdeclaro;
}

::selection {
    color     : $branco;
    background: $verdeclaro;
}

* {
    -moz-box-sizing   : border-box;
    -webkit-box-sizing: border-box;
    box-sizing        : border-box;
}

html,
body {
    font-size         : 16px;
    line-height       : 1.1;
    width             : 100%;
    scroll-behavior   : smooth;
    -moz-box-sizing   : border-box;
    -webkit-box-sizing: border-box;
    box-sizing        : border-box;
}

body {
    overflow-x: hidden;
    position  : relative;
}

img {
    outline: 1px solid transparent;
}

a {
    text-decoration: none !important;
}

/* Extra small devices (phones, less than 480px - Ex: iPhone 4) */
/* No media query since this is the default in Bootstrap */


div.nomobile {
    position: fixed;
    left: 0; top: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    text-align: center;
    z-index: 100200;
    p {
        font-family: $sourcesans;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #706F6F;
        margin-bottom: 20px;
    }
}


.up {
    position             : fixed;
    display              : block;
    bottom               : 10px;
    right                : 0;
    z-index              : 1000;
    width                : 30px;
    height               : 30px;
    background-color     : #BCBEC0;
    -webkit-border-radius: 50px;
    border-radius        : 50px;
    padding              : 5px;
    opacity              : 0;
    visibility           : hidden;
    -webkit-transition   : all 250ms ease-out;
    -moz-transition      : all 250ms ease-out;
    -ms-transition       : all 250ms ease-out;
    -o-transition        : all 250ms ease-out;
    transition           : all 250ms ease-out;

    &:hover {
        background-color: $verdeclaro;
    }
}

// MENUS

#Menu {
    z-index           : 2;
    width             : 100%;
    background-color  : $verdeescuro;
    position          : absolute;
    top               : 0;
    left              : 0;
    z-index           : 9999;
    -webkit-transition: all 1000ms ease;
    -moz-transition   : all 1000ms ease;
    -ms-transition    : all 1000ms ease;
    -o-transition     : all 1000ms ease;
    transition        : all 1000ms ease;
    padding           : 15px 0;

    .navbar-brand {
        padding: 0;

        img {
            height: 50px;
        }
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0 $verdeclaro;
    }

    .navbar-toggler {
        border          : 0;
        padding         : 0 .75rem;
        background-color: transparent;

        .navbar-toggler-icon {
            width           : 40px;
            height          : 40px;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
        }
    }

    .navbar-collapse {
        padding-top: 30px;

        ul {
            padding-left: 0;

            li {
                list-style: none;
                position  : relative;
                cursor    : pointer;
                a {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 155%;
                    color: #FFFFFF;
                }

                ul {
                    position             : relative;
                    min-width            : unset;
                    background-color     : $verdeescuro;
                    -webkit-border-radius: 0;
                    border-radius        : 0;
                    padding              : 5px 0;
                    border               : 0;
                    border-left          : 2px solid $verdeclaro;
                    -webkit-transition   : all 300ms ease;
                    -moz-transition      : all 300ms ease;
                    -ms-transition       : all 300ms ease;
                    -o-transition        : all 300ms ease;
                    transition           : all 300ms ease;

                    li {
                        display : block !important;
                        width   : 100%;
                        position: relative;

                        a {
                            font-family: $sourcesans;
                            font-style: normal;
                            font-weight: 600;
                            font-size: 15px;
                            line-height: 120%;
                            color: #FFFFFF;
                            &:focus,
                            &:active {
                                color           : $verdeclaro;
                                background-color: $branco;
                            }
                        }
                    }
                }
            }

            li.active {
                >a {
                    font-weight: 700;
                }
            }
        }
    }

    .idiomas {
        svg {
            display: none;
        }

        .links_idiomas {
            display              : inline-block;
            background-color     : $cinza05;
            padding              : 15px;
            margin-top           : 20px;
            -webkit-border-radius: 50px;
            border-radius        : 50px;

            a {
                font-family   : $sourcesans;
                font-style    : normal;
                font-weight   : 400;
                font-size     : 16px;
                line-height   : 24px;
                text-align    : center;
                letter-spacing: 0.055em;
                color         : #4D4D4D;
                text-transform: uppercase;
            }

            a.active {
                font-weight: 800;
            }
        }
    }
}

#menu-paginas {
    display           : none;
    z-index           : 2;
    width             : 100%;
    background-color  : $branco;
    position          : fixed;
    top               : 0;
    left              : 0;
    z-index           : 9999;
    padding           : 15px 0;
    box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
    .navbar-brand {
        padding: 0;

        img {
            height: 40px;
        }
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0 $verdeclaro;
    }

    .navbar-toggler {
        border          : 0;
        padding         : 0 .75rem;
        background-color: transparent;

        .navbar-toggler-icon {
            width           : 40px;
            height          : 40px;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
        }
    }

    .navbar-collapse {
        padding-top: 30px;

        ul {
            padding-left: 0;

            li {
                list-style: none;
                position  : relative;
                cursor    : pointer;

                a {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 155%;
                    color: #878787;
                }

                ul {
                    position             : relative;
                    min-width            : unset;
                    background-color     : $branco;
                    -webkit-border-radius: 0;
                    border-radius        : 0;
                    padding              : 5px 15px;
                    border               : 0;
                    -webkit-transition   : all 300ms ease;
                    -moz-transition      : all 300ms ease;
                    -ms-transition       : all 300ms ease;
                    -o-transition        : all 300ms ease;
                    transition           : all 300ms ease;

                    li {
                        display : block !important;
                        width   : 100%;
                        position: relative;

                        a {
                            font-family: $sourcesans;
                            font-style: normal;
                            font-weight: 600;
                            font-size: 18px;
                            line-height: 120%;
                            color: #B2B2B2;
                            &:focus,
                            &:active {
                                color           : $verdeclaro;
                                background-color: $branco;
                            }
                        }
                        ul {
                            li.active {
                                >a {
                                    color      : $branco;
                                }
                            }
                        }
                    }
                }
            }

            li.active {
                >a {
                    color      : $verdeclaro;
                }
            }
        }
    }

    button {
        border          : 0;
        background-color: transparent;
        padding         : 5px 15px 5px 5px;
        border-right    : 1px solid $cinza6;

        svg {
            width : 15px;
            height: 15px;

            path {
                -webkit-transition: all 300ms ease;
                -moz-transition   : all 300ms ease;
                -ms-transition    : all 300ms ease;
                -o-transition     : all 300ms ease;
                transition        : all 300ms ease;
            }
        }

        &:hover {
            svg {
                path {
                    fill: $branco;
                }
            }
        }
    }

    .idiomas {
        svg {
            display: none;
        }

        .links_idiomas {
            display              : inline-block;
            background-color     : $cinza05;
            padding              : 15px;
            margin-top           : 20px;
            -webkit-border-radius: 50px;
            border-radius        : 50px;

            a {
                font-family   : $sourcesans;
                font-style    : normal;
                font-weight   : 400;
                font-size     : 16px;
                line-height   : 24px;
                text-align    : center;
                letter-spacing: 0.055em;
                color         : #4D4D4D;
                text-transform: uppercase;
            }

            a.active {
                font-weight: 800;
            }
        }
    }
}

// HOME PAGE

#home {
    width      : 100%;
    height     : 100vh;
    position   : relative;
    padding-top: 70px;
}

#carousel {
    width  : 100%;
    height : 100%;
    z-index: 1;

    .carousel-inner {
        height: 100%;
        .carousel-item {
            height             : 100%;
            background: linear-gradient(289.37deg, #176076 13.01%, #1E7F76 86.99%);

            .carousel_overlay {
                width                                             : 100%;
                height                                            : 100%;
                position                                          : relative;
                z-index                                           : 3;
                background-color                                  : transparent !important;
                background-image: url('https://smabr.com/wp-content/uploads/2022/07/banner-overlay-1-1.png');
                background-position: center;
                background-size: 100% 100%;
                .carousel_alinha {
                    margin : 0 auto;
                    display: flex;
                    height : 100%;
                    width  : 100%;
                }
            }

            .banner-graf {
                position       : absolute;
                left           : 0;
                top            : 0;
                z-index        : 2;
                width          : 100%;
                height         : 100%;
                object-fit     : cover;
                background-size: cover;
            }

            div.banner-paisagem {
                position       : absolute;
                left           : 0;
                top            : 0;
                z-index        : 1;
                width          : 100%;
                height         : 100%;
                background-size: cover;
                background-position: center;
            }

            div.banner-retrato {
                position           : absolute;
                left               : 0;
                top                : 0;
                z-index            : 1;
                width              : 100%;
                height             : 100%;
                background-size: cover;
            }

            .banner-centraliza {
                width  : auto;
                padding: 20px 40px;
                text-align: center;
                h1,
                h2 {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 32px;
                    line-height: 100%;
                    text-align: center;
                    text-transform: uppercase;
                    color: #FFFFFF;
                    strong {
                        font-family: $gibson;
                        font-style    : normal;
                        font-weight   : 700;
                    }
                }

                h3,
                h4,
                h5,
                h6 {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 28px;
                    line-height: 120%;
                    text-align: center;
                    color: #55BCBD;
                }

                p {
                    font-family: $sourcesans;
                    font-style   : normal;
                    font-size    : 16px;
                    line-height  : 130%;
                    color        : #d8d8d8;
                    text-shadow  : 2px 4px 10px rgba(0, 0, 0, 0.5);
                    margin-bottom: 10px;

                    em {
                        font-style: italic;
                    }
                }

                a {
                    display              : inline-block;
                    margin-top           : 20px;
                    font-family          : $sourcesans;
                    font-style           : normal;
                    font-weight          : 700;
                    font-size            : 14px;
                    line-height          : 140%;
                    color                : $branco;
                    border               : 2px solid $branco;
                    background-color     : transparent;
                    -webkit-border-radius: 200px;
                    border-radius        : 200px;
                    padding              : 10px 10px;
                    text-transform       : uppercase;
                    -webkit-transition   : all 300ms ease;
                    -moz-transition      : all 300ms ease;
                    -ms-transition       : all 300ms ease;
                    -o-transition        : all 300ms ease;
                    transition           : all 300ms ease;

                    &:hover {
                        color           : $cinzaescuro;
                        background-color: $verdeclaro;
                        border          : 2px solid $verdeclaro;
                    }
                }

                .ancora {
                    text-align: center;
                    margin: 20px auto 0 auto;
                    -webkit-border-radius: 0;
                    border-radius        : 0;
                    padding              : 0;
                    border: 0;
                    &:hover {
                        color           : transparent;
                        background-color: transparent;
                        border          : 0;
                    }
                }

                img {
                    width     : 100%;
                    height    : auto;
                    max-height: 50%;
                }
            }
        }
    }

    .carousel-indicators [data-bs-target] {
        width           : 35px;
        height          : 7px;
        background-color: white;
        margin          : 0 10px;

    }

    .carousel-indicators .active {
        background-color: black;
        opacity         : 1;
    }

    .carousel-control-next,
    .carousel-control-prev {
        top    : 0;
        opacity: 1;
        width  : 13%;

        svg {
            width     : 40px;
            height    : 40px;
            text-align: center;
        }
    }
}

.anima_banner {
animation: zoom-in-zoom-out 30s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
0% {
    transform: scale(1, 1);
}
100% {
    transform: scale(1.2, 1.2);
}
}

.apresentacao {
    background-position: left center;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-color: $cinza05;
    .texto {
        padding-top: 50px;
        padding-bottom: 75px;
        h3 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 40px;
            line-height: 120%;
            color: #695E59;
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
            margin-bottom: 30px;
        }
        a {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 130%;
            text-align: center;
            text-transform: uppercase;
            color: #55BCBD;
            padding: 5px 20px;
            border: 2px solid #55BCBD;
            border-radius: 3px;
            background: transparent;
            -webkit-transition: background 300ms ease;
            -moz-transition: background 300ms ease;
            -ms-transition: background 300ms ease;
            -o-transition: background 300ms ease;
            transition: background 300ms ease;
            &:hover {
                border: 0;
                color: #FFFFFF;
                padding: 7px 22px;
                background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
            }
        }
    }
}
#apresentacao {
    -moz-transform: translateY(-90px);
    -webkit-transform: translateY(-90px);
    -o-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
}

.atuacaohome {
    padding-top: 75px;
    padding-bottom: 75px;
    .texto {
        h4 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 32px;
            line-height: 100%;
            color: #695E59;
            br {
                display: none;
            }
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
        }
    }
    .bloco {
        .expansor {
            .esquerda {
                width: 100%;
            }
            .direita {
                width: 100%;
            }
            .exp-item {
                button {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 130%;
                    color: #695E59;
                    border: 0;
                    background-color: transparent;
                    padding: 10px;
                    border-bottom: 1px solid $verdeclaro;
                    width: 100%;
                    text-align: left;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    a {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 20px;
                        line-height: 130%;
                        color: #695E59;
                        //white-space: nowrap;
                    }
                    svg {
                        margin-left: 15px;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                    }
                }
                button.ativo {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 130%;
                    color: #006666;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    a {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 20px;
                        line-height: 130%;
                        color: #006666;
                    }
                    svg {
                        -moz-transform: rotate(180deg);
                        -webkit-transform: rotate(180deg);
                        -o-transform: rotate(180deg);
                        -ms-transform: rotate(180deg);
                        transform: rotate(180deg);
                    }
                }
                .exp-corpo {
                    columns: 1;
                    padding: 20px 30px 0 30px;
                    max-height: 0;
                    overflow: hidden;
                    -webkit-transition: all 500ms ease;
                    -moz-transition: all 500ms ease;
                    -ms-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease;
                    a {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 120%;
                        color: #55BCBD;
                        position: relative;
                        display: block;
                        margin-bottom: 20px;
                        &::before {
                            content: url('../images/bullet_menor_verde.svg');
                            position: absolute;
                            left: -18px;
                            top: 0;
                        }
                    }
                }
                .exp-corpo.aberto {
                    max-height: 1000px;
                    flex-direction: column;
                    -webkit-transition: all 500ms ease;
                    -moz-transition: all 500ms ease;
                    -ms-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease;
                }
            }
        }
    }
}

.equipehome {
    .texto {
        padding-top: 50px;
        padding-bottom: 75px;
        h3 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 32px;
            line-height: 120%;
            color: #695E59;
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
            margin-bottom: 30px;
        }
        a {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 130%;
            text-align: center;
            text-transform: uppercase;
            color: #55BCBD;
            padding: 5px 20px;
            border: 2px solid #55BCBD;
            border-radius: 3px;
            background: transparent;
            -webkit-transition: background 300ms ease;
            -moz-transition: background 300ms ease;
            -ms-transition: background 300ms ease;
            -o-transition: background 300ms ease;
            transition: background 300ms ease;
            &:hover {
                border: 0;
                color: #FFFFFF;
                padding: 7px 22px;
                background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
            }
        }
    }
}

.atualidadeshome {
    padding-top: 75px;
    padding-bottom: 75px;
    .topo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        h4 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 28px;
            line-height: 70%;
            color: #695E59;
        }
        a {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 130%;
            text-align: center;
            text-transform: uppercase;
            color: #55BCBD;
            padding: 5px 10px;
            border: 2px solid #55BCBD;
            border-radius: 3px;
            background: transparent;
            -webkit-transition: background 300ms ease;
            -moz-transition: background 300ms ease;
            -ms-transition: background 300ms ease;
            -o-transition: background 300ms ease;
            transition: background 300ms ease;
            &:hover {
                border: 0;
                color: #FFFFFF;
                padding: 7px 22px;
                background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
            }
        }
    }
    .ind.maior {
        margin-bottom: 30px;
        >div {
            position: relative;
            border-radius: 3px;
            overflow: hidden;
            &:hover {
                .overlay {
                    > div {
                        h5 {
                            padding-bottom: 10px;
                        }
                        a.link {
                            display: block;
                        }
                    }
                }
            }
        }
        .overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 1;
            left: 0;
            top: 0;
            background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 70.96%);
            padding: 20px;
            display: flex;
            align-items: flex-end;
            .data {
                position: absolute;
                left: 50px; top: 50px;
                z-index: 1;
                font-family: "Source Sans Pro", sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 26px;
                line-height: 155%;
                text-transform: uppercase;
                color: #FFFFFF;
                padding: 5px 10px;
                background: #55BCBD;
                border-radius: 3px;
                margin-right: 10px;
                background-color: #005757;
            }
            > div {

                h5 {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 155%;
                    color: #FFFFFF;
                    padding: 30px 0 0 0;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }
                a.link {
                    display: none;
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 155%;
                    text-decoration-line: underline !important;
                    color: #6FEAEB;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    &:hover {
                        color: $branco;
                    }
                }
                a.cat {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 155%;
                    text-transform: uppercase;
                    color: #FFFFFF;
                    padding: 5px 10px;
                    background: #55BCBD;
                    border-radius: 3px;
                    margin-right: 10px;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    &:hover {
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
            }

        }
        img {
            width: 100%;
            aspect-ratio: 1/0.9;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }
    }
    .ind.menor {
        margin-bottom: 30px;
        >div {
            position: relative;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
            aspect-ratio: 1/0.77;
            .data {
                position: absolute;
                left: 30px; top: 30px;
                z-index: 1;
                font-family: "Source Sans Pro", sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 18px;
                line-height: 130%;
                text-transform: uppercase;
                color: #FFFFFF;
                padding: 5px 10px;
                background: #55BCBD;
                border-radius: 3px;
                margin-right: 10px;
                background-color: #005757;
            }
            .texto {
                padding: 0 30px 15px 30px;
                position: absolute; left: 0; bottom: 0; z-index: 2;
                width: 100%;
                min-height: 50%;
                -webkit-transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                transition: all 500ms ease;
                > div {
                    margin-top: -15px;
                    h5 {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 130%;
                        color: #695E59;
                        padding: 15px 0 0 0;
                        margin-bottom: 0;
                        max-height: 100px;
                        overflow: hidden;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                    }
                    a.link {
                        display: none;
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 20px;
                        line-height: 155%;
                        text-decoration-line: underline !important;
                        color: #6FEAEB;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                        &:hover {
                            color: $branco;
                        }
                    }
                    a.cat {
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 155%;
                        text-transform: uppercase;
                        color: #FFFFFF;
                        padding: 5px 10px;
                        background: #55BCBD;
                        border-radius: 3px;
                        margin-right: 10px;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                        &:hover {
                            background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                        }
                    }
                }
            }
            .branco {
                position: relative; z-index: 1;
                background-color: #fff;
                width: 100%;
                min-height: 50%;
            }
            &:hover {
                img {
                    max-height: 100%;
                    min-height: 100%;
                }
                .texto {
                    padding: 0 30px 30px 30px;
                    background-color: transparent;
                    background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
                    > div {
                        h5 {
                            color: $branco;
                            padding: 15px 0 0 0;
                            margin-bottom: 10px;
                        }
                        a.link {
                            display: block;
                        }
                    }
                }
            }
        }
        img {
            width: 100%;
            max-height: 50%;
            min-height: 50%;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }
    }
}

.escritorio {
    padding-top: 80px;
    background-position: bottom center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    .bloco1 {
        background-color: $cinza05;
        background-image: url('https://smabr.com/wp-content/uploads/2022/08/escritorio-topo.png');
        background-position: right top;
        background-size: 120% auto;
        background-repeat: no-repeat;
    }
    .bloco2 {
//         background-image: url('https://smabr.com/wp-content/uploads/2022/07/equipe-escritorio.jpg');
		background-image:url('https://smabr.com/wp-content/uploads/2025/06/ensaio-scaled.jpg');
        background-position: left top;
        background-size: 100% auto;
        background-repeat: no-repeat;
        margin-bottom: 50px;
        .texto {
            padding-top: 300px;
            padding-bottom: 0;
        }
    }
    .texto {
        padding-top: 300px;
        padding-bottom: 50px;
        h3 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 32px;
            line-height: 120%;
            color: #695E59;
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
            margin-bottom: 10px;
        }
    }
}

.equipe {
    padding-top: 80px;

    .filtros {
        margin-top: 50px;
        form {
            display: flex;
            margin-bottom: 20px;
            button {
                border: 0;
                height: 40px;
                background-color: #fff;
                border-radius: 0 3px 3px 0;
                padding: 0 10px 5px 10px;
                svg {
                    width: 20px;
                    height: 20px;
                }
            }
            input[type=text] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 40px;
                width: 100%;
                padding: 3px 3px 3px 15px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 120%;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px 0 0 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;
    
                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 120%;
                    color: #7F7F7F;
                }
    
                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 120%;
                    color: #7F7F7F;
                }
    
                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 120%;
                    color: #7F7F7F;
                }
    
                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 120%;
                    color: #7F7F7F;
                }
            }
        }
        .iniciais {
            width: 95%;
            margin: 0 auto;
            margin-bottom: 30px;
            padding: 10px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            border-bottom: 1px solid $verdeclaro;
            text-align: center;
            a { 
                display: block;
                padding: 0 5px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 120%;
                text-align: center;
                letter-spacing: 0.6em;
                color: #C6C6C6;
                &:hover {
                    color: #55BCBD;
                }
            }
            .todos {
                font-family: $gibson;
                margin-left: 30px;
                font-style: normal;
                font-weight: 500;
                font-size: 16px;
                line-height: 130%;
                text-align: center;
                text-transform: uppercase;
                color: #55BCBD;
                padding: 0;
                letter-spacing: 1px;
            }
        }
    }
    .bloco {
        margin-top: 50px;
        margin-bottom: 75px;
        h4 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 32px;
            line-height: 100%;
            color: #695E59;
            margin-bottom: 20px;
        }
        .equipe-ind {
            width: 50%;
            padding: 0 15px;
            margin-bottom: 30px;
            > div {
                position: relative;
                border-radius: 3px;
                overflow: hidden;
                box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
                border-bottom: 5px solid black;
				background-color: #000;
                .texto {
                    position: absolute;
                    left: 0; bottom: 0;
                    z-index: 2;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: flex-end;
                    padding: 20px;

                    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+39,1+100 */
                    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 39%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
                    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
                    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
                    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */

                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    h5 {
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 100%;
                        color: #FFFFFF;
                        margin: 0;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                    }
                    p {
                        opacity: 0;
                        visibility: hidden;
                        max-height: 0;
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 110%;
                        text-transform: uppercase;
                        color: #6FEAEB;
                        margin: 0;
                        -webkit-transition: all 300ms ease;
                        -moz-transition: all 300ms ease;
                        -ms-transition: all 300ms ease;
                        -o-transition: all 300ms ease;
                        transition: all 300ms ease;
                    }
                }
                img {
                    width: 100%;
                    aspect-ratio: 1/1.3;
                    object-fit: cover;
                    object-position: center;
                }
                a.linkedin {
                    display: none;
                    position: absolute;
                    right: 20px; bottom: 20px;
                    z-index: 1001;
                    svg {
                        width: 20px;
                        height: 20px;
                    }
                }
                &:hover {
                    border-bottom: 5px solid #55BCBD !important;
                    .texto {
                        h5 {
                            color: $verdeclaro;
                        }
                        p {
                            max-height: 1000px;
                            margin: 20px 0 0 0;
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                    a.linkedin {
                        display: block;
                    }
                }
            }
        }
    }
}

.perfil {
    padding-top: 80px;
    .perfil-conteudo {
        background-color: $cinza2;
        .nome {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: nowrap !important;
            padding: 0 !important;
            a {
                min-width: unset !important;
            }
        }
        .texto {
            padding-top: 30px;
            padding-bottom: 50px;
            h2 {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 900;
                font-size: 40px;
                line-height: 100%;
                color: #55BCBD;
                margin-bottom: 0;
                width: 100%;
                span {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 900;
                    font-size: 42px;
                    line-height: 100%;
                    color: #006666;
                }
            }
            hr {
                border: 0;
                height: 1px;
                background: $verdeclaro;
                margin: 20px auto;
                opacity: 1;
            }
            > div {
                padding: 0 20px;
                display: flex;
                flex-wrap: wrap;
                a, p {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 155%;
                    color: #695E59;
                    min-width: 40%;
                    display: block;
                    margin-bottom: 20px;
                    svg {
                        margin-right: 10px;
                    }
                }
            }
            h5 {
                width: 100%;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 155%;
                color: #695E59;
                padding-left: 40px;
                position: relative;
                margin-top: 15px;
                &::before {
                    content: "";
                    width: 30px;
                    height: 2px;
                    background-color: $verdeclaro;
                    left: 0; top: 13px;
                    position: absolute;
                }
            }
            ul {
                list-style: none;
                padding: 0 0 0 15px;
                margin: 0;
                li {
                    display: inline-block;
                    position: relative;
                    margin-right: 30px;
                    margin-bottom: 10px;
                    &::before {
                        content: url('../images/bullet_menor_verde.svg');
                        position: absolute; left: -15px;
                    }
                    a {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 150%;
                        color: #695E59;
                        margin: 0;
                        &:hover {
                            color: $verdemedio;
                            font-weight: 500;
                        }
                    }
                }
            }
        }
        .foto {
            margin-top: 50px;
            > div {
                height: 100%;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
    .perfil-textos {
        padding-top: 50px;
        padding-bottom: 50px;
        .texto {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 70%;
                color: #695E59;
                margin-bottom: 20px;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 155%;
                color: #695E59;
            }
            ul {
                list-style: none;
                padding: 0 0 0 15px;
                margin: 0;
                li {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 155%;
                    color: #695E59;
                    display: inline-block;
                    position: relative;
                    margin-right: 30px;
                    margin-bottom: 10px;
                    &::before {
                        content: url('../images/bullet_menor_verde.svg');
                        position: absolute; left: -15px;
                    }
                }
            }
            .accordion {
                margin-top: 30px;
                margin-bottom: 30px;
                .accordion-item {
                    border: 0;
                    background-color: transparent;
                }
                .accordion-button {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 70%;
                    color: #695E59;
                    border: 0;
                    border-bottom: 2px solid $verdeclaro;
                    border-radius: 0;
                    padding: 1.5rem 1rem 1rem 1rem;
                    background-color: transparent;
                }
                .accordion-button:not(.collapsed) {
                    color: #695E59;
                    background-color: transparent;
                    box-shadow: inset 0 -1px 0 rgba(0,0,0,0);
                }
                .accordion-button::after {
                    background-image: url('../images/accordion.svg');
                }
                .accordion-button:not(.collapsed)::after {
                    background-image: url('../images/accordion.svg');
                }
                .accordion-body {
                    padding-bottom: 0;
                }
            }
        }
    }
    .noticias-relacionadas {
        padding-bottom: 50px;

        .bloco {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 100%;
                color: #695E59;
                margin-bottom: 25px;
            }
            .ind.menor {
                margin-bottom: 30px;
                >div {
                    position: relative;
                    border-radius: 3px;
                    overflow: hidden;
                    box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                    aspect-ratio: 1/1.1;
                    .textoind {
                        padding: 0 20px 20px 20px;
                        position: absolute; left: 0; bottom: 0; z-index: 2;
                        width: 100%;
                        min-height: 40%;
                        background-color: #fff;
                        > div {
                            margin-top: -15px;
                            h5 {
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 120%;
                                color: #695E59;
                                padding: 15px 0 0 0;
                                margin-bottom: 0;
                                max-height: 100px;
                                overflow: hidden;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                            }
                            a.link {
                                display: none;
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 700;
                                font-size: 20px;
                                line-height: 155%;
                                text-decoration-line: underline !important;
                                color: #6FEAEB;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    color: $branco;
                                }
                            }
                            a.cat {
                                font-family: $gibson;
                                font-style: normal;
                                font-weight: 500;
                                font-size: 16px;
                                line-height: 155%;
                                text-transform: uppercase;
                                color: #FFFFFF;
                                padding: 5px 10px;
                                background: #55BCBD;
                                border-radius: 3px;
                                margin-right: 10px;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                                }
                            }
                        }
                    }
                    .branco {
                        position: relative; z-index: 1;
                        background-color: #fff;
                        width: 100%;
                        min-height: 40%;
                    }
                    &:hover {
                        img {
                            max-height: 100%;
                            min-height: 100%;
                        }
                        .textoind {
                            background-color: transparent;
                            background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
                            padding-bottom: 40px;
                            > div {
                                h5 {
                                    color: $branco;
                                    padding: 15px 0 0 0;
                                    margin-bottom: 10px;
                                }
                                a.link {
                                    display: block;
                                }
                            }
                        }
                    }
                }
                img {
                    width: 100%;
                    max-height: 70%;
                    min-height: 70%;
                    object-fit: cover;
                    -webkit-transition: all 500ms ease;
                    -moz-transition: all 500ms ease;
                    -ms-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease;
                }
            }
        }
    }
}

.areas {
    padding-top: 80px;
    .tit {
        padding-top: 50px;
        h1 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 28px;
            line-height: 120%;
            text-transform: uppercase;
            color: #55BCBD;
            margin-bottom: 30px;
            span {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 100%;
                text-transform: uppercase;
                color: #006666;
            }
        }
    }
    .texto {
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
			em {
				font-style: italic;
			}
        }

        .accordion {
            margin-top: 30px;
            margin-bottom: 50px;
            .accordion-item {
                border: 0;
                background-color: transparent;
            }
            .accordion-button {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 28px;
                line-height: 70%;
                color: #695E59;
                border: 0;
                border-bottom: 2px solid $verdeclaro;
                border-radius: 0;
                padding: 1.5rem 1rem 1rem 1rem;
                background-color: transparent;
            }
            .accordion-button:not(.collapsed) {
                color: #695E59;
                background-color: transparent;
                box-shadow: inset 0 -1px 0 rgba(0,0,0,0);
            }
            .accordion-button::after {
                background-image: url('../images/accordion.svg');
            }
            .accordion-button:not(.collapsed)::after {
                background-image: url('../images/accordion.svg');
            }
            .accordion-body {
                padding-bottom: 0;
                ul {
                    list-style: none;
                    padding: 0 0 0 15px;
                    margin: 0;
                    li {
                        width: 95%;
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 155%;
                        color: #695E59;
                        display: inline-block;
                        position: relative;
                        margin-right: 30px;
                        margin-bottom: 10px;
                        &::before {
                            content: url('../images/bullet_menor_verde.svg');
                            position: absolute; left: -15px;
                        }
                    }
                }
            }
        }

        .wpcf7 {
            form.wpcf7-form {
                overflow: hidden;
  
                p:nth-of-type(3) {
                    margin: 0 0 30px 0;
                }
    
                input[type=text] {
                    background: #FFFFFF;
                    border-radius: 3px;
                    height: 35px;
                    width: 100%;
                    padding: 3px 3px 3px 10px;
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #695E59;
                    border: 0;
                    -webkit-transition   : all 300ms ease;
                    -moz-transition      : all 300ms ease;
                    -ms-transition       : all 300ms ease;
                    -o-transition        : all 300ms ease;
                    transition           : all 300ms ease;
    
                    &::-webkit-input-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
    
                    &::-moz-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                    }
    
                    &:-ms-input-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
    
                    &:-moz-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
                }
    
                input[type=email] {
                    background: #FFFFFF;
                    border-radius: 3px;
                    height: 35px;
                    width: 100%;
                    padding: 3px 3px 3px 10px;
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #695E59;
                    border: 0;
                    -webkit-transition   : all 300ms ease;
                    -moz-transition      : all 300ms ease;
                    -ms-transition       : all 300ms ease;
                    -o-transition        : all 300ms ease;
                    transition           : all 300ms ease;
    
                    &::-webkit-input-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
    
                    &::-moz-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                    }
    
                    &:-ms-input-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
    
                    &:-moz-placeholder {
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        color: #695E59;
                    }
                }
    
                input[type=submit] {
                    float                : right;
                    height               : 35px;
                    font-family: 'Mulish';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    letter-spacing: 0.03em;
                    text-transform: uppercase;
                    color: #008080;
                    padding: 0 10px;
                    border: 2px solid #008080;
                    border-radius: 3px;               
                    background: transparent;
                    -webkit-transition: background 300ms ease;
                    -moz-transition: background 300ms ease;
                    -ms-transition: background 300ms ease;
                    -o-transition: background 300ms ease;
                    transition: background 300ms ease;
                    &:hover,
                    &:focus {
                        border: 0;
                        color: #FFFFFF;
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
                .wpcf7-spinner {
                    margin: 0;
                    position: absolute;
                }
                .ajax-loader {
                    position: absolute;
                }
    
                .wpcf7-response-output {
                    float      : left;
                    text-align : left;
                    width      : 100%;
                    margin     : 10px 0 0 0;
                    padding    : 0;
                    border     : 0;
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 120%;
                    color: #695E59;
                }
    
                .wpcf7-not-valid-tip {
                    display: none !important;
                }
    
                .wpcf7-not-valid {
                    border: 1px solid red !important;
                }
            }
            form.invalid {
                .wpcf7-response-output {
                    color: red;
                }
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #695E59;
                margin     : 0 0 15px 0;
                width: 100%;
                a {
                    color: $verdemedio;
                    &:hover {
                        color: $verdeescuro;
                        text-decoration: underline !important;
                    }
                }
            }
        }
    }
}
.equipe.equipe-relacionada {
    padding-top: 0;
    background-image: unset;
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.contato {
    margin-top: 0;
    padding-top: 80px;
    .topo {
        background-image: url('https://smabr.com/wp-content/uploads/2022/09/bc-contato.png');
        background-position: right top;
        background-size: 120% auto;
        background-repeat: no-repeat;
        background-color: $cinza05;
        .texto {
            padding-top: 85px;
            padding-bottom: 75px;
            h1 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 40px;
                line-height: 70%;
                color: #006666;
                margin-bottom: 30px;
                margin-top: 90px;
            }
            > div {
                display: flex;
                flex-wrap: wrap;
                a {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 130%;
                    color: #695E59;
                    display: block;
                    margin-bottom: 30px;
                    margin-right: 50px;
                    svg {
                        margin-right: 10px;
                        float: left;
                    }
                }
                a:last-of-type {
                    width: 100%;
                }
            }
        }
    }
    .bloco {
        padding-top: 50px;
        padding-bottom: 50px;
        .texto {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 600;
                font-size: 20px;
                line-height: 28px;
                color: #695E59;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                color: #695E59;
            }
            a {
                display: inline-block;
                margin-bottom: 30px;
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 130%;
                text-align: center;
                text-transform: uppercase;
                color: #55BCBD;
                padding: 5px 20px;
                border: 2px solid #55BCBD;
                border-radius: 3px;
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover {
                    border: 0;
                    color: #FFFFFF;
                    padding: 7px 22px;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
        }
        .form {
            p {
                float: left;
                width: 100%;
                padding-bottom: 10px;
                margin: 0;
            }
            p:nth-of-type(1) {
                width: 50%;
                padding: 0 5px 10px 0;
            }
            p:nth-of-type(2) {
                width: 50%;
                padding: 0 0 10px 5px;
            }
            p:nth-of-type(6) {
                width: auto;
                float: right;
                padding: 0;
            }
            input[type=text] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            input[type=tel] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            input[type=email] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            textarea {
                background: #FFFFFF;
                border-radius: 3px;
                height: 100px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            input[type=submit] {
                float                : right;
                height               : 35px;
                width: 100%;
                font-family: 'Mulish';
                font-style: normal;
                font-weight: 700;
                font-size: 16px;
                line-height: 130%;
                text-align: center;
                letter-spacing: 0.03em;
                text-transform: uppercase;
                color: #008080;
                padding: 0 10px;
                border: 2px solid #008080;
                border-radius: 3px;               
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover,
                &:focus {
                    border: 0;
                    color: #FFFFFF;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
            .wpcf7-spinner {
                margin: 0;
                position: absolute;
            }
            .ajax-loader {
                position: absolute;
            }

            .wpcf7-response-output {
                float      : left;
                text-align : left;
                width      : 100%;
                margin     : 10px 0 0 0;
                padding    : 0;
                border     : 0;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #695E59;
            }

            .wpcf7-not-valid-tip {
                display: none !important;
            }
        }
        form.invalid {
            .wpcf7-response-output {
                color: red;
            }
        }
    }
}

.trabalhe {
    margin-top: 138px;
    .topo {
        .texto {
            padding-top: 75px;
            padding-bottom: 45px;
            h1 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 40px;
                line-height: 70%;
                color: #006666;
                margin-bottom: 30px;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 155%;
                color: #7F7F7F;
                strong {
                    font-weight: 600;
                }
            }
        }
    }
    .bloco {
        padding-bottom: 50px;
        .texto {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 600;
                font-size: 20px;
                line-height: 28px;
                color: #695E59;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                color: #695E59;
            }
            a {
                display: inline-block;
                margin-bottom: 30px;
                font-family: $mulish;
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 130%;
                text-align: center;
                text-transform: uppercase;
                color: #55BCBD;
                padding: 5px 20px;
                border: 2px solid #55BCBD;
                border-radius: 3px;
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover {
                    border: 0;
                    color: #FFFFFF;
                    padding: 7px 22px;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
        }
        .form {
            p {
                float: left;
                width: 100%;
                padding-bottom: 10px;
                margin: 0;
            }
            p:nth-of-type(2) {
                width: 50%;
                padding: 0 5px 10px 0;
            }
            p:nth-of-type(3) {
                width: 50%;
                padding: 0 0 10px 5px;
            }
            p:nth-of-type(7) {
                width: auto;
                float: right;
                padding: 0;
            }
            input[type=text] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            input[type=tel] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            select {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

            }
            input[type=email] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            textarea {
                background: #FFFFFF;
                border-radius: 3px;
                height: 100px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #7F7F7F;
                border: 0;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                }
            }
            .file {
                width: 100%;
                margin-top: 5px;
                padding: 15px;
                background-color: $cinza2;
                -webkit-border-radius: 5px;
                border-radius: 5px;
                color: $cinza7;
                text-align: center;
                label {
                    cursor: pointer;
                }

                span {
                    text-align: right;
                    vertical-align: middle;
                    display: inline-block;
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #7F7F7F;
                    margin: 0;

                    span {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 20px;
                        color: #7F7F7F;
                    }
                }

                .wpcf7-form-control-wrap {
                    margin-left: 20px;
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20px;
                    color: #6D6E71;
                }
            }
            input[type=submit] {
                float                : right;
                height               : 35px;
                width: 100%;
                font-family: 'Mulish';
                font-style: normal;
                font-weight: 700;
                font-size: 16px;
                line-height: 130%;
                text-align: center;
                letter-spacing: 0.03em;
                text-transform: uppercase;
                color: #008080;
                padding: 0 10px;
                border: 2px solid #008080;
                border-radius: 3px;               
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover,
                &:focus {
                    border: 0;
                    color: #FFFFFF;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
            .wpcf7-spinner {
                margin: 0;
                position: absolute;
            }
            .ajax-loader {
                position: absolute;
            }

            .wpcf7-response-output {
                float      : left;
                text-align : left;
                width      : 100%;
                margin     : 10px 0 0 0;
                padding    : 0;
                border     : 0;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #695E59;
            }

            .wpcf7-not-valid-tip {
                display: none !important;
            }
        }
        form.invalid {
            .wpcf7-response-output {
                color: red;
            }
        }
    }
}

.blog {
    margin-top: 0;
    padding-top: 130px;
    .bloco-blog {
        padding-bottom: 50px;

        .bloco {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 70%;
                color: #695E59;
                margin-bottom: 25px;
            }
            .ind.menor {
                margin-bottom: 30px;
                >div {
                    position: relative;
                    border-radius: 3px;
                    overflow: hidden;
                    box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                    aspect-ratio: 1/1.1;
                    .data {
                        position: absolute;
                        left: 20px; top: 20px;
                        z-index: 1;
                        font-family: "Source Sans Pro", sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 18px;
                        line-height: 130%;
                        text-transform: uppercase;
                        color: #FFFFFF;
                        padding: 5px 10px;
                        background: #55BCBD;
                        border-radius: 3px;
                        margin-right: 10px;
                        background-color: #005757;
                    }
                    .textoind {
                        padding: 0 20px 20px 20px;
                        position: absolute; left: 0; bottom: 0; z-index: 2;
                        width: 100%;
                        min-height: 40%;
                        background-color: #fff;
                        > div {
                            margin-top: -15px;
                            h5 {
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 120%;
                                color: #695E59;
                                padding: 15px 0 0 0;
                                margin-bottom: 0;
                                max-height: 100px;
                                overflow: hidden;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                            }
                            a.link {
                                display: none;
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 700;
                                font-size: 20px;
                                line-height: 155%;
                                text-decoration-line: underline !important;
                                color: #6FEAEB;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    color: $branco;
                                }
                            }
                            a.cat {
                                font-family: $gibson;
                                font-style: normal;
                                font-weight: 500;
                                font-size: 16px;
                                line-height: 155%;
                                text-transform: uppercase;
                                color: #FFFFFF;
                                padding: 5px 10px;
                                background: #55BCBD;
                                border-radius: 3px;
                                margin-right: 10px;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                                }
                            }
                        }
                    }
                    .branco {
                        position: relative; z-index: 1;
                        background-color: #fff;
                        width: 100%;
                        min-height: 50%;
                    }
                    &:hover {
                        img {
                            max-height: 100%;
                            min-height: 100%;
                        }
                        .textoind {
                            background-color: transparent;
                            background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
                            padding-bottom: 40px;
                            > div {
                                h5 {
                                    color: $branco;
                                    padding: 15px 0 0 0;
                                    margin-bottom: 10px;
                                }
                                a.link {
                                    display: block;
                                }
                            }
                        }
                    }
                }
                img {
                    width: 100%;
                    max-height: 70%;
                    min-height: 70%;
                    object-fit: cover;
                    -webkit-transition: all 500ms ease;
                    -moz-transition: all 500ms ease;
                    -ms-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                    transition: all 500ms ease;
                }
            }
        }
    }
    .filtros-blog {
        margin-bottom: 50px;
        > div {
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: column;
        }
        ul {
            margin-bottom: 20px;
            list-style: none;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            padding-left: 0;
            li {
                a {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 120%;
                    letter-spacing: -0.03em;
                    color: #C6C6C6;
                    display: inline-block;
                    padding-right: 20px;
                    margin-bottom: 5px;
                    &:hover {
                        color: #695E59;
                    }
                }
                h6 {
                    font-family: 'Lato';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 120%;
                    letter-spacing: -0.03em;
                    color: #B2B2B2;
                    position: relative;
                    display: inline-block;
                    cursor: pointer;
                    margin: 0;
                    &:after {
                        content: url('../images/exp2.svg');
                        position: absolute;
                        right: -5px;
                        top: -3px;
                    }
                }
                ul {
                    flex-direction: column;
                    display: none;
                    position: absolute;
                    z-index: 100000;
                    background-color: #fff;
                    border-radius: 3px;
                    filter: drop-shadow(0px 4px 15px rgba(149, 118, 83, 0.2));
                    padding: 5px 0;
                    li {
                        a {
                            display: inline-block;
                            white-space: nowrap;
                            padding: 5px 10px;
                        }
                    }
                }
                ul.aberto {
                    display: flex;
                }
            }
            li.current-cat {
                a {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 120%;
                    letter-spacing: -0.03em;
                    color: #008080;
                }
            }
        }
        form {
            input[type=text] {
                background-color: transparent;
                width: 88%;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                text-align: right;
                letter-spacing: -0.03em;
                color: #C6C6C6;
                border: 0;
                border-bottom: 1px solid #B2B2B2;
                padding: 7px 10px;
                &::placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 120%;
                    text-align: right;
                    letter-spacing: -0.03em;
                    color: #C6C6C6;
                }
            }
            button {
                padding: 0;
                background-color: transparent;
                border: 0;
            }
        }
    }
}

.publicacao {
    margin-top: 0;
    padding-top: 80px;
    .publicacao-conteudo {
        padding: 0 15px;
        .publicacao-titulo {
            margin-top   : 50px;
            margin-bottom: 30px;
            h2 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 120%;
                color: #008080;
            }

            hr {
                opacity         : 1;
                width           : 50px;
                border          : 0;
                height          : 3px;
                background-color: $cinza1;
                margin          : 30px 0 10px 0;
            }

            p {
                font-family: $sourcesans;
                font-style: italic;
                font-weight: 600;
                font-size: 16px;
                line-height: 24px;
                color: #706F6F;
                margin-bottom: 10px;

                a {
                    font-family: $sourcesans;
                    font-style: italic;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 24px;
                    color: #55BCBD;
                    &:hover {
                        color          : $verdeclaro;
                        text-decoration: underline !important;
                    }
                }
            }
        }

        .publicacao-texto {
            margin-bottom: 50px;
            overflow     : hidden;

            img.thumb {
                width                : 100%;
                aspect-ratio         : 2/1;
                object-fit           : cover;
                object-position      : center;
                -webkit-border-radius: 10px;
                border-radius        : 10px;
                min-height           : 150px;
            }

            p {
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 160%;
                color: #706F6F;
                margin-bottom: 10px;
            }

            h1, h2, h3 {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 600;
                line-height: 120%;
                letter-spacing: -0.03em;
                color: #008080;
                margin-top   : 20px;
                margin-bottom: 10px;
                margin-top    : 20px;
                margin-bottom : 10px;
            }

            h4,
            h5,
            h6 {
                font-family  : $sourcesans;
                font-style   : normal;
                font-weight  : 400;
                line-height: 120%;
                letter-spacing: -0.03em;
                color        : $cinzaescuro;
                margin-top   : 20px;
                margin-bottom: 10px;
            }

            a {
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 160%;
                color               : $verdeclaro;
                text-decoration     : underline !important;

                &:hover {
                    color: $verdeclaro;
                }
            }

            ul,
            ol {
                padding-left: 20px;

                li {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 160%;
                    color: #706F6F;
                    margin-bottom: 5px;
                }
            }

            ul {
                list-style: none;
                li {
                    position: relative;
                    &:before {
                        content : url('../images/bullet_menor_verde.svg');
                        position: absolute;
                        left    : -15px;
                        top     : 0;
                    }
                }
            }

            p.wp-caption-text {
                margin-top      : -20px;
                margin-bottom   : 0;
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 14px;
                line-height: 160%;
                color: #706F6F;
                background-color: $cinza05;
            }

            >div {
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 160%;
                color: #706F6F;
            }

            img.alignleft {
                width                : 100%;
                height               : auto;
                float                : left;
                margin               : 0 0 20px 0;
                -webkit-border-radius: 10px;
                border-radius        : 10px;
            }

            img.alignright {
                width                : 100%;
                height               : auto;
                float                : right;
                margin               : 0 0 20px 0;
                -webkit-border-radius: 10px;
                border-radius        : 10px;
            }

            img.aligncenter {
                width                : 100%;
                height               : auto;
                margin               : 0 auto 20px auto;
                -webkit-border-radius: 10px;
                border-radius        : 10px;
            }

            img {
                width                : 100%;
                height               : auto;
                margin               : 0 0 20px 0;
                -webkit-border-radius: 10px;
                border-radius        : 10px;
            }

            div.alignleft {
                width : 100%;
                height: auto;
                float : left;
                margin: 0 0 20px 0;

                img {
                    -webkit-border-radius: 10px 10px 0 0;
                    border-radius        : 10px 10px 0 0;
                }
            }

            div.alignright {
                width : 100%;
                height: auto;
                float : right;
                margin: 0 0 20px 0;

                img {
                    -webkit-border-radius: 10px 10px 0 0;
                    border-radius        : 10px 10px 0 0;
                }
            }

            blockquote {
                clear  : both;
                padding: 15px;

                p {
                    font-family: $sourcesans;
                    font-style : italic;
                    font-weight: 400;
                    font-size  : 20px;
                    line-height: 170%;
                    text-align : justify;
                    color      : $cinzaescuro;
                    margin     : 0;
                }
            }

            strong {
                font-weight: 700;
            }

            table {
                margin-bottom: 20px;

                tr {
                    td {
                        padding    : 5px;
                        font-family: $mulish;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 160%;
                        color: #706F6F;
                    }
                }
            }

            em {
                font-style: italic !important;
            }
        }

        .publicacao-compartilhar {
            margin-bottom: 50px;

            p {
                font-family  : $sourcesans;
                font-style   : normal;
                font-weight  : 700;
                font-size    : 16px;
                line-height  : 120%;
                color        : $preto;
                margin-bottom: 5px;
            }
            div {
                display: flex;
            }
            a {
                margin-right: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid #A7A9AC;
                -webkit-border-radius: 200px;
                border-radius: 200px;
            }
            svg {
                width: 20px;
                height: 20px;
                background-color: transparent;
                &:hover {
                    path {
                        fill: $verdeclaro;
                    }
                }
            }
        }

        .categorias {
            a {
                font-family: $gibson;
                color: $verdeclaro;
                font-size: 20px;
                font-style: italic;
            }
        }
    }
    .bloco-publicacao {
        margin-top: 50px;
        padding-bottom: 50px;

        .bloco {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 70%;
                color: #695E59;
                margin-bottom: 25px;
            }
            .ind.menor {
                margin-bottom: 30px;
                >div {
                    position: relative;
                    border-radius: 3px;
                    overflow: hidden;
                    box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                    aspect-ratio: 1/1.1;
                    .data {
                        position: absolute;
                        left: 20px; top: 20px;
                        z-index: 1;
                        font-family: "Source Sans Pro", sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 18px;
                        line-height: 130%;
                        text-transform: uppercase;
                        color: #FFFFFF;
                        padding: 5px 10px;
                        background: #55BCBD;
                        border-radius: 3px;
                        margin-right: 10px;
                        background-color: #005757;
                    }
                    .textoind {
                        padding: 0 20px 20px 20px;
                        position: absolute; left: 0; bottom: 0; z-index: 2;
                        width: 100%;
                        min-height: 30%;
                        background-color: #fff;
                        > div {
                            margin-top: -15px;
                            h5 {
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 120%;
                                color: #695E59;
                                padding: 15px 0 0 0;
                                margin-bottom: 0;
                                max-height: 100px;
                                overflow: hidden;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                            }
                            a.link {
                                display: none;
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 700;
                                font-size: 20px;
                                line-height: 155%;
                                text-decoration-line: underline !important;
                                color: #6FEAEB;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    color: $branco;
                                }
                            }
                            a.cat {
                                font-family: $gibson;
                                font-style: normal;
                                font-weight: 500;
                                font-size: 16px;
                                line-height: 155%;
                                text-transform: uppercase;
                                color: #FFFFFF;
                                padding: 5px 10px;
                                background: #55BCBD;
                                border-radius: 3px;
                                margin-right: 10px;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover {
                                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                                }
                            }
                        }
                    }
                    .branco {
                        position: relative; z-index: 1;
                        background-color: #fff;
                        width: 100%;
                        min-height: 50%;
                    }
                    &:hover {
                        img {
                            max-height: 100%;
                            min-height: 100%;
                        }
                        .textoind {
                            background-color: transparent;
                            background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
                            padding-bottom: 40px;
                            > div {
                                h5 {
                                    color: $branco;
                                    padding: 15px 0 0 0;
                                    margin-bottom: 10px;
                                }
                                a.link {
                                    display: block;
                                }
                            }
                        }
                    }
                }
                img {
                    width: 100%;
                    max-height: 70%;
                    min-height: 70%;
                    object-fit: cover;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }
            }
        }
    }
    .publicacao-fale {
        .texto {
            h5 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 32px;
                line-height: 120%;
                color: #695E59;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 155%;
                color: #695E59;
            }
        }
        .form {
            p {
                float: left;
                width: 100%;
                padding-bottom: 10px;
                margin: 0;
            }
            p:nth-of-type(1) {
                width: 50%;
                padding: 0 5px 10px 0;
            }
            p:nth-of-type(2) {
                width: 50%;
                padding: 0 0 10px 5px;
            }
            p:nth-of-type(4) {
                width: auto;
                float: right;
                padding: 0;
            }
            input[type=text] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #B2B2B2;
                border: 1px solid #fff;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;
                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }
            }
            input[type=email] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #B2B2B2;
                border: 1px solid #fff;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }
            }
            textarea {
                background: #FFFFFF;
                border-radius: 3px;
                height: 125px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #B2B2B2;
                border: 1px solid #fff;
                box-shadow: 0px 4px 30px rgba(61, 61, 61, 0.1);
                border-radius: 3px;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;
                &::-webkit-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &::-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-ms-input-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }

                &:-moz-placeholder {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                    color: #B2B2B2;
                }
            }
            input[type=submit] {
                float                : right;
                height               : 35px;
                width: 100%;
                font-family: 'Mulish';
                font-style: normal;
                font-weight: 700;
                font-size: 16px;
                line-height: 130%;
                text-align: center;
                letter-spacing: 0.03em;
                text-transform: uppercase;
                color: #008080;
                padding: 0 10px;
                border: 2px solid #008080;
                border-radius: 3px;               
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover,
                &:focus {
                    border: 0;
                    color: #FFFFFF;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
            .wpcf7-spinner {
                margin: 0;
                position: absolute;
            }
            .ajax-loader {
                position: absolute;
            }
            .wpcf7-not-valid {
                border-color: red !important;
            }
            .wpcf7-response-output {
                float      : left;
                text-align : left;
                width      : 100%;
                margin     : 10px 0 0 0;
                padding    : 0;
                border     : 0;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #695E59;
            }

            .wpcf7-not-valid-tip {
                display: none !important;
            }
        }
        form.invalid {
            .wpcf7-response-output {
                color: red;
            }
        }
    }
}

.responsabilidade {
    padding-top: 80px;
    .background {
        background-image: url('https://smabr.com/wp-content/uploads/2022/07/bg-responsabilidade-scaled.jpg');
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
        padding-bottom: 25px;
    }
    .comite {
        background-image: url('https://smabr.com/wp-content/uploads/2022/07/digital.png');
        background-size: 48% auto;
        background-position: left top;
        background-repeat: no-repeat;
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            svg {
                width: 400px;
                height: 175px;
            }
        }
        .texto {
            padding-top: 75px;
            padding-bottom: 75px;
            h4 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 130%;
                letter-spacing: -0.015em;
                color: #005757;
                span {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 24px;
                    line-height: 130%;
                    letter-spacing: -0.03em;
                    color: #009490;
                }
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 155%;
                color: #695E59;
            }
        }
    }
    .equidade {
        padding-bottom: 50px;
        .texto {
            padding: 30px 15px;
            display: flex;
            align-items: center;
            box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
            border-radius: 3px;
            background-color: #fff;
            h4 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 40px;
                line-height: 120%;
                letter-spacing: -0.015em;
                color: #006666;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 22px;
                line-height: 155%;
                color: #695E59;
                strong {
                    font-weight: 700;
                }
            }
            > div {
                > div {
                    display: flex;
                    align-items: center;
                    margin-top: 0;
                    max-height: 0;
                    overflow: hidden;
                    -webkit-transition: all 0 ease;
                    -moz-transition: all 0 ease;
                    -ms-transition: all 0 ease;
                    -o-transition: all 0 ease;
                    transition: all 0 ease;
                    h5 {
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 40px;
                        line-height: 100%;
                        letter-spacing: -0.015em;
                        color: $verdemedio;
                        margin: 0 20px 0 0;
                    }
                    > div {
                        width: 100%;
                        background-color: $cinza2;
                        border-radius: 50px;
                        > div {
                            height: 8px;
                            width: 0;
                            border-radius: 50px;
                            background-color: $verdemedio;
                            -webkit-transition: all 0 ease;
                            -moz-transition: all 0 ease;
                            -ms-transition: all 0 ease;
                            -o-transition: all 0 ease;
                            transition: all 0 ease;
                        }
                    }
                }
            }
        }
        .foto {
            box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
            border-radius: 0 3px 3px 3px;
            background-color: #fff;
            background-image: url('https://smabr.com/wp-content/uploads/2022/07/equidade.jpg');
            background-position: center;
            background-size: cover;
            aspect-ratio: 1/0.5;
        }
        .row {
            &:hover {
                .texto {
                    > div {
                        > div {
                            max-height: 100px;
                            margin-top: 30px;
                            -webkit-transition: all 500ms ease;
                            -moz-transition: all 500ms ease;
                            -ms-transition: all 500ms ease;
                            -o-transition: all 500ms ease;
                            transition: all 500ms ease;
                            div {
                                div {
                                    width: 60%;
                                    -webkit-transition: all 500ms ease;
                                    -moz-transition: all 500ms ease;
                                    -ms-transition: all 500ms ease;
                                    -o-transition: all 500ms ease;
                                    transition: all 500ms ease;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .investimento {

        padding: 0 15px 50px 15px;
        .tit {
            h4 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 40px;
                line-height: 130%;
                text-transform: uppercase;
                color: #55BCBD;
                span {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 50px;
                    line-height: 100%;
                    text-transform: uppercase;
                    color: $verdeescuro;
                }
            }
        }
        .texto {
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 155%;
                color: #695E59;
            }
            h5 {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 700;
                font-size: 18px;
                line-height: 155%;
                color: #009490;
            }
        }
        .duplo {
            margin-top: 50px;
            .texto {
                padding: 30px 15px;
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 3px;
                background-color: #fff;
                img {
                    height: 100px;
                    width: auto;
                    margin-bottom: 20px;
                }
                p {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 155%;
                    color: #695E59;
                }
                > div {
                    button {
                        display: inline-block;
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 130%;
                        text-align: center;
                        text-transform: uppercase;
                        color: $cinza4;
                        padding: 5px 20px;
                        border: 2px solid $cinza4;
                        border-radius: 3px;
                        margin-right: 15px;
                        background: transparent;
                        -webkit-transition: background 300ms ease;
                        -moz-transition: background 300ms ease;
                        -ms-transition: background 300ms ease;
                        -o-transition: background 300ms ease;
                        transition: background 300ms ease;
                        &:hover {
                            border: 0;
                            color: #FFFFFF;
                            padding: 7px 22px;
                            background: $cinza4;
                        }
                    }
                    a:nth-of-type(1) {
                        display: inline-block;
                        font-family: $gibson;
                        font-style: normal;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 130%;
                        text-align: center;
                        text-transform: uppercase;
                        color: #55BCBD;
                        padding: 5px 20px;
                        border: 2px solid #55BCBD;
                        border-radius: 3px;
                        background: transparent;
                        -webkit-transition: background 300ms ease;
                        -moz-transition: background 300ms ease;
                        -ms-transition: background 300ms ease;
                        -o-transition: background 300ms ease;
                        transition: background 300ms ease;
                        &:hover {
                            border: 0;
                            color: #FFFFFF;
                            padding: 7px 22px;
                            background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                        }
                    }
                }
            }
            .foto {
                overflow: hidden;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 0 3px 3px 3px;
                background-color: #fff;
                aspect-ratio: 1/0.5;
                position: relative;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
                position: relative;
                img {
                    position: absolute;
                    left: 0; top: 0;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }
                div {
                    background-color: $verdemedio;
                    position: absolute;
                    left: 0; bottom: 0;
                    z-index: 2;
                    width: 100%;
                    max-height: 0;
                    overflow: hidden;
                    padding: 0 5px;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                    p {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 120%;
                        text-align: center;
                        color: #FFFFFF;
                        margin: 0;
                    }
                }
                &:hover {
                    > div {
                        padding: 5px;
                        max-height: 100px;
                    }
                    img {
                        -moz-transform: scale(1.2);
                        -webkit-transform: scale(1.2);
                        -o-transform: scale(1.2);
                        -ms-transform: scale(1.2);
                        transform: scale(1.2);
                    }
                }
            }
        }
        .unico {
            margin-top: 50px;
            >div {
                cursor: pointer;
                aspect-ratio: 1/0.9;
                position: relative;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 3px;
                background-color: #fff;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    max-width: 220px;
                    max-height: 50%;
                    -moz-transform: translateY(-30px);
                    -webkit-transform: translateY(-30px);
                    -o-transform: translateY(-30px);
                    -ms-transform: translateY(-30px);
                    transform: translateY(-30px);
                }
                a {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: #008080;
                    position: absolute;
                    z-index: 2;
                    bottom: 20px;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    padding: 2px 5px;
                    background-color: #fff;
                    &::before {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        left: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &::after {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        right: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                }
            }
        }
        .unico5 {
            margin-top: 50px;
            >div {
                cursor: pointer;
                aspect-ratio: 1/0.35;
                position: relative;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 3px;
                background-color: #fff;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    max-width: 220px;
                    max-height: 50%;
                    -moz-transform: translateY(-30px);
                    -webkit-transform: translateY(-30px);
                    -o-transform: translateY(-30px);
                    -ms-transform: translateY(-30px);
                    transform: translateY(-30px);
                }
                a {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: #008080;
                    position: absolute;
                    z-index: 2;
                    bottom: 20px;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    padding: 2px 5px;
                    background-color: #fff;
                    &::before {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        left: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &::after {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        right: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                }
            }
        }
        .unico.texto {
            display: none;
            > div {
                width: 100%;
                aspect-ratio: 1/0.9;
                position: relative;
                border-radius: 0;
                display: block;
                padding: 15px;
                cursor: pointer;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 3px;
                background-color: #fff;
                img {
                    max-height: 100px;
                    width: auto;
                    margin-bottom: 20px;
                    transform: translateY(0);
                }
                p {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 155%;
                    color: #695E59;
                }
                button {
                    display: inline-block;
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: $cinza4;
                    padding: 5px 20px;
                    border: 2px solid $cinza4;
                    border-radius: 3px;
                    margin-right: 15px;
                    background: transparent;
                    -webkit-transition: background 300ms ease;
                    -moz-transition: background 300ms ease;
                    -ms-transition: background 300ms ease;
                    -o-transition: background 300ms ease;
                    transition: background 300ms ease;
                    &:hover {
                        border: 0;
                        color: #FFFFFF;
                        padding: 7px 22px;
                        background: $cinza4;
                    }
                }
                a:nth-of-type(1) {
                    position: relative;
                    left: unset; bottom: unset;
                    display: inline-block;
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: #55BCBD;
                    padding: 5px 20px;
                    border: 2px solid #55BCBD;
                    border-radius: 3px;
                    background: transparent;
                    transform: translate(0);
                    -webkit-transition: background 300ms ease;
                    -moz-transition: background 300ms ease;
                    -ms-transition: background 300ms ease;
                    -o-transition: background 300ms ease;
                    transition: background 300ms ease;
                    &::before {
                        content: unset;
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        left: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &::after {
                        content: unset;
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        right: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &:hover {
                        border: 0;
                        color: #FFFFFF;
                        padding: 7px 22px;
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
            }
        }
        .unicotexto5.texto {
            display: none;
            > div {
                width: 100%;
                aspect-ratio: 1/0.35;
                position: relative;
                border-radius: 0;
                display: block;
                padding: 15px;
                cursor: pointer;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);
                border-radius: 3px;
                background-color: #fff;
                img {
                    max-height: 100px;
                    width: auto;
                    margin-bottom: 20px;
                    transform: translateY(0);
                }
                p {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 155%;
                    color: #695E59;
                }
                button {
                    display: inline-block;
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: $cinza4;
                    padding: 5px 20px;
                    border: 2px solid $cinza4;
                    border-radius: 3px;
                    margin-right: 15px;
                    background: transparent;
                    -webkit-transition: background 300ms ease;
                    -moz-transition: background 300ms ease;
                    -ms-transition: background 300ms ease;
                    -o-transition: background 300ms ease;
                    transition: background 300ms ease;
                    &:hover {
                        border: 0;
                        color: #FFFFFF;
                        padding: 7px 22px;
                        background: $cinza4;
                    }
                }
                a:nth-of-type(1) {
                    position: relative;
                    left: unset; bottom: unset;
                    display: inline-block;
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    text-transform: uppercase;
                    color: #55BCBD;
                    padding: 5px 20px;
                    border: 2px solid #55BCBD;
                    border-radius: 3px;
                    background: transparent;
                    transform: translate(0);
                    -webkit-transition: background 300ms ease;
                    -moz-transition: background 300ms ease;
                    -ms-transition: background 300ms ease;
                    -o-transition: background 300ms ease;
                    transition: background 300ms ease;
                    &::before {
                        content: unset;
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        left: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &::after {
                        content: unset;
                        position: absolute;
                        z-index: -1;
                        width: 30px;
                        right: -35px;
                        top: 10px;
                        height: 2px;
                        background-color: $verdeclaro;
                    }
                    &:hover {
                        border: 0;
                        color: #FFFFFF;
                        padding: 7px 22px;
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
            }
        }
    }

    .meioambiente {
        background-position: center bottom;
        background-size: cover;
        .texto {
            padding-top: 75px;
            padding-bottom: 75px;
            h4 {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 700;
                font-size: 48px;
                line-height: 120%;
                letter-spacing: -0.015em;
                color: #65E1DE;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 600;
                font-size: 20px;
                line-height: 150%;
                color: #FFFFFF;
            }
        }
    }
    .governanca {
        padding-top: 75px;
        padding-bottom: 75px;
        background-position: right top;
        background-size: cover;
        background-repeat: no-repeat;

        .texto {
            h4 {
                font-family: $gibson;
                font-style: normal;
                font-weight: 500;
                font-size: 40px;
                line-height: 100%;
                color: #006666;
                margin-bottom: 20px;
            }
            p {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 155%;
                color: #695E59;
            }
            ul {
                list-style: none;
                padding: 0 0 0 15px;
                margin: 0;
                li {
                    font-family: $sourcesans;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    color: #008080;
                    position: relative;
                    &::before {
                        content: url('../images/bullet_menor_verde.svg');
                        position: absolute; left: -15px;
                    }
                    a {
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 150%;
                        color: #008080;
                    }
                }
            }
        }
    }
}
.boxresponsabilidade {
    border-radius: 20px;
    .texto {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        img {
            height: 120px;
            width: auto;
            margin-bottom: 20px;
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 155%;
            color: #695E59;
        }
        > div {
            button {
                display: inline-block;
                font-family: $mulish;
                margin-right: 15px;
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 130%;
                text-align: center;
                text-transform: uppercase;
                color: $cinza4;
                padding: 5px 20px;
                border: 2px solid $cinza4;
                border-radius: 3px;
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover {
                    border: 0;
                    color: #FFFFFF;
                    padding: 7px 22px;
                    background: $cinza4;
                }
            }
            a:nth-of-type(1) {
                display: inline-block;
                font-family: $mulish;
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 130%;
                text-align: center;
                text-transform: uppercase;
                color: #55BCBD;
                padding: 5px 20px;
                border: 2px solid #55BCBD;
                border-radius: 3px;
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover {
                    border: 0;
                    color: #FFFFFF;
                    padding: 7px 22px;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
        }
    }
}


.news {
    position: relative;
    z-index: 2;
    background-color: transparent;
    .news_bloco {
        padding: 0 15px;
    }
    .row {
        padding: 30px 10px;
        background: #EDEDED;
        box-shadow: 0px 8px 30px rgba(61, 61, 61, 0.2);
        border-radius: 3px;
        margin-bottom: -100px;
        background-image: url('https://smabr.com/wp-content/uploads/2022/07/news.jpg');
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no;
    }
    .texto {
        display       : flex;
        flex-direction: column;
        margin-bottom : 20px;

        h3 {
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 36px;
            line-height: 100%;
            color: #695E59;
            margin-bottom: 10px;

            svg {
                margin-right: 10px;
            }
        }

        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 120%;
            color: #695E59;
            margin     : 0;
        }
    }

    .form {
        form.wpcf7-form {
            overflow: hidden;
            p:nth-of-type(1) {
                float : left;
                width : 100%;
                margin: 0 0 10px 0;
            }

            p:nth-of-type(2) {
                float : left;
                width : 100%;
                margin: 0 0 10px 0;

                .mc4wp-checkbox {
                    display   : none;
                    opacity   : 0;
                    visibility: hidden;
                }
            }

            p:nth-of-type(3) {
                float : right;
                margin: 0;
                position: relative;
            }

            input[type=text] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #695E59;
                border: 0;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }

                &::-moz-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                }

                &:-ms-input-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }

                &:-moz-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }
            }

            input[type=email] {
                background: #FFFFFF;
                border-radius: 3px;
                height: 35px;
                width: 100%;
                padding: 3px 3px 3px 10px;
                font-family: $mulish;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #695E59;
                border: 0;
                -webkit-transition   : all 300ms ease;
                -moz-transition      : all 300ms ease;
                -ms-transition       : all 300ms ease;
                -o-transition        : all 300ms ease;
                transition           : all 300ms ease;

                &::-webkit-input-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }

                &::-moz-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                }

                &:-ms-input-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }

                &:-moz-placeholder {
                    font-family: $mulish;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    color: #695E59;
                }
            }

            input[type=submit] {
                float                : right;
                height               : 35px;
                width: 100%;
                font-family: 'Mulish';
                font-style: normal;
                font-weight: 700;
                font-size: 16px;
                line-height: 130%;
                text-align: center;
                letter-spacing: 0.03em;
                text-transform: uppercase;
                color: #008080;
                padding: 0 10px;
                border: 2px solid #008080;
                border-radius: 3px;               
                background: transparent;
                -webkit-transition: background 300ms ease;
                -moz-transition: background 300ms ease;
                -ms-transition: background 300ms ease;
                -o-transition: background 300ms ease;
                transition: background 300ms ease;
                &:hover,
                &:focus {
                    border: 0;
                    color: #FFFFFF;
                    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                }
            }
            .wpcf7-spinner {
                margin: 0;
                position: absolute;
            }
            .ajax-loader {
                position: absolute;
            }

            .wpcf7-response-output {
                float      : left;
                text-align : left;
                width      : 100%;
                margin     : 10px 0 0 0;
                padding    : 0;
                border     : 0;
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                color: #695E59;
            }

            .wpcf7-not-valid-tip {
                display: none !important;
            }

            .wpcf7-not-valid {
                border: 1px solid red !important;
            }
        }
        form.invalid {
            .wpcf7-response-output {
                color: red;
            }
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 120%;
            color: #695E59;
            margin     : 15px 0 0 0;
            a {
                color: $verdemedio;
                &:hover {
                    color: $verdeescuro;
                    text-decoration: underline !important;
                }
            }
        }
    }
}

.fullscreen-bg {
    height    : 100%;
    overflow  : hidden;
    position  : absolute;
    right     : 0;
    bottom    : 0;
    z-index   : 1;
    min-width : 100%;
    min-height: 100%;

    .fullscreen-bg__video {
        position  : absolute;
        right     : 0;
        bottom    : 0;
        min-width : 100%;
        min-height: 100%;
        width     : auto;
        height    : auto;
    }

    .background-image {
        top       : 0;
        left      : 0;
        height    : 100%;
        /* Preserve aspect ratio */
        min-width : 100%;
        min-height: 100%;
    }
}

footer {
    padding-top         : 150px;
    background: #F6F6F6;
    background-image: url('https://smabr.com/wp-content/uploads/2022/07/Lines.png');
    background-position: right top;
    background-size: auto 100%;
    background-repeat: no-repeat;
    .logo {
        text-align   : center;
        margin-bottom: 30px;

        img.logorodape {
            width        : 80%;
            margin-bottom: 30px;
        }
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: #7F7F7F;
        }
    }

    .info {
        text-align: center;
        margin-top: 30px;
        h5 {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 600;
            font-size: 18px;
            line-height: 80%;
            color: #695E59;
            margin-bottom: 15px;
        }
        svg {
            margin-right: 10px;
            path {
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }
            &:hover {
                path {
                    fill: $verdeescuro;
                }
            }
        }
        > div {
            margin-bottom: 30px;
        }
        > a {
            display: inline-block;
            margin-bottom: 10px;
            font-family: $gibson;
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 130%;
            text-align: center;
            text-transform: uppercase;
            color: #55BCBD;
            padding: 5px 20px;
            border: 2px solid #55BCBD;
            border-radius: 3px;
            background: transparent;
            -webkit-transition: background 300ms ease;
            -moz-transition: background 300ms ease;
            -ms-transition: background 300ms ease;
            -o-transition: background 300ms ease;
            transition: background 300ms ease;
            &:hover {
                border: 0;
                color: #FFFFFF;
                padding: 7px 22px;
                background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
            }
        }
    }

    .copyright {
        margin-top      : 30px;
        text-align      : center;
        padding         : 10px 0;
        background: #878787;
        p {
            font-family: $sourcesans;
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: 140%;
            color: #FFFFFF;
            margin: 0;
            span {
                font-family: $sourcesans;
                font-style: normal;
                font-weight: 400;
                font-size: 12px;
                line-height: 140%;
                color: #FFFFFF;
            }

            a {
                text-decoration: underline !important;
                color          : $branco;
                img {
                    height     : 15px;
                    margin-left: 5px;
                }
            }
        }
    }
}

.disclaimer {
    max-height        : 0;
    opacity           : 0;
    visibility        : hidden;
    position          : fixed;
    z-index           : -1;
    bottom            : -100%;
    left              : 0;
    right             : 0;
    margin            : auto;
    padding           : 50px 15px;
    background-color  : $verdeclaro;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow        : 0 0 10px 0 rgba(0, 0, 0, 0.25);
    text-align        : center;
    //background-image: url('../images/news.png');
    background-size: 30% 100%;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-transition: all 1000ms ease;
    -moz-transition   : all 1000ms ease;
    -ms-transition    : all 1000ms ease;
    -o-transition     : all 1000ms ease;
    transition        : all 1000ms ease;

    .fechar {
        position        : absolute;
        right           : 0;
        top             : -40px;
        background-color: $branco;
        width           : 40px;
        height          : 40px;
        cursor          : pointer;
    }

    .fechar:hover {
        background-color: $branco;
    }

    p {
        font-family: $sourcesans;
        margin     : 0 0 20px 0;
        color      : $branco;
        line-height: 18px;
        font-size  : 14px;
    }

    a.link-politica {
        text-decoration: underline !important;
        font-weight    : bold;
        color          : $branco;
    }

    button.politica {
        cursor               : pointer;
        border               : 0;
        font-family          : $sourcesans;
        margin               : 0;
        color                : $verdeclaro !important;
        font-size            : 16px;
        padding              : 10px 15px;
        background-color     : $branco;
        -webkit-border-radius: 5px;
        border-radius        : 5px;
        -webkit-transition   : all 300ms ease;
        -moz-transition      : all 300ms ease;
        -ms-transition       : all 300ms ease;
        -o-transition        : all 300ms ease;
        transition           : all 300ms ease;
    }

    button.politica:hover {
        color           : $branco !important;
        background-color: $cinzaescuro;
    }
}

.blog_cat {
    position      : relative;
    padding-bottom: 20px;

    h6 {
        position             : relative;
        font-family          : $sourcesans;
        font-style           : normal;
        font-weight          : 400;
        font-size            : 16px;
        line-height          : 130%;
        color                : $cinza6;
        background-color     : $branco;
        width                : 100%;
        -webkit-border-radius: 5px;
        border-radius        : 5px;
        height               : 35px;
        padding              : 6px 3px 3px 10px;
        border               : 0.5px solid #D1D3D4;
        margin               : 0;

        &:after {
            content : url("../images/cat.svg");
            position: absolute;
            right   : 10px;
        }
    }

    .categorias {
        display           : none;
        width             : 100%;
        position          : absolute;
        z-index           : 10001;
        max-height        : 0;
        background-color  : $branco;
        padding           : 15px;
        -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
        box-shadow        : 0 0 3px 3px rgba(0, 0, 0, 0.1);
        -webkit-transition: all 300ms ease;
        -moz-transition   : all 300ms ease;
        -ms-transition    : all 300ms ease;
        -o-transition     : all 300ms ease;
        transition        : all 300ms ease;

        li {
            list-style : none;
            color      : $cinza2;
            font-family: $sourcesans;
            font-weight: 300;

            a {
                color      : $cinzaescuro;
                font-family: $sourcesans;
                font-weight: 300;

                &:hover {
                    color: $verdeclaro;
                }
            }
        }
    }
}

.blog_procura {
    padding-top   : 20px;
    padding-bottom: 20px;

    form {
        display        : flex;
        justify-content: space-between;

        input[type=text] {
            font-family          : $sourcesans;
            font-style           : normal;
            font-weight          : 400;
            font-size            : 16px;
            line-height          : 130%;
            color                : $cinza6;
            width                : 100%;
            -webkit-border-radius: 5px 0 0 5px;
            border-radius        : 5px 0 0 5px;
            height               : 35px;
            padding              : 3px 3px 3px 10px;
            border               : 0.5px solid #D1D3D4;
            border-right         : 0;
            -webkit-transition   : all 300ms ease;
            -moz-transition      : all 300ms ease;
            -ms-transition       : all 300ms ease;
            -o-transition        : all 300ms ease;
            transition           : all 300ms ease;


            &::-webkit-input-placeholder {
                color: $cinza6;
            }

            &::-moz-placeholder {
                color: $cinza6;
            }

            &:-ms-input-placeholder {
                color: $cinza6;
            }

            &:-moz-placeholder {
                color: $cinza6;
            }
        }

        button[type=submit] {
            height               : 35px;
            width                : 35px;
            -webkit-border-radius: 0 5px 5px 0;
            border-radius        : 0 5px 5px 0;
            padding              : 0;
            background-color     : $branco;
            font-size            : 16px;
            border               : 0;
            cursor               : pointer;
            border               : 0.5px solid #D1D3D4;
            border-left          : 0;

            svg {
                height: 20px;
                width : 20px;

                path {
                    -webkit-transition: all 300ms ease;
                    -moz-transition   : all 300ms ease;
                    -ms-transition    : all 300ms ease;
                    -o-transition     : all 300ms ease;
                    transition        : all 300ms ease;
                }
            }

            &:hover,
            &:focus {
                svg {
                    path {
                        fill: $verdeclaro;
                    }
                }
            }
        }
    }
}


#Pag404 {
    padding         : 50px 15px;
    background-color: white;

    p {
        font-family  : "Open Sans", sans-serif;
        color        : #585858;
        margin-bottom: 20px;
        font-size    : 18px;
    }
}


.qrcode {
    opacity            : 0;
    visibility         : hidden;
    max-height         : 0;
    position           : fixed;
    left               : 0;
    top                : 0;
    z-index            : -1;
    width              : 100%;
    height             : 100%;
    //background-image   : url("../images/bg-home-atuacao.png");
    background-position: top center;
    background-repeat  : no-repeat;
    background-size    : 100%;

    -webkit-transition: all 300ms ease;
    -moz-transition   : all 300ms ease;
    -ms-transition    : all 300ms ease;
    -o-transition     : all 300ms ease;
    transition        : all 300ms ease;

    .qrcode_interno {

        display        : flex;
        flex-direction : column;
        align-items    : flex-start;
        justify-content: center;
        padding        : 0 15px;
        width          : 100%;
        height         : 100%;
    }

    img.logo_qr {
        width        : 100%;
        margin-bottom: 20px;
    }

    img.qr {
        width: 160px;
    }

    p {
        font-family  : $sourcesans;
        color        : $cinzaescuro;
        font-weight  : 400;
        margin-bottom: 50px;

        br {
            display: none;
        }
    }

    a {
        font-family: $sourcesans;
        font-weight: 400;
        color      : $verdeclaro;

        &:hover {
            color          : $verdeclaro;
            text-decoration: underline !important;
        }
    }

    .fechar_qrcode {
        position        : absolute;
        left            : 20px;
        top             : 20px;
        background-color: transparent;
        border          : 0;
        cursor          : pointer;

        svg {
            width : 40px;
            height: 40px;

            path {
                -webkit-transition: all 300ms ease;
                -moz-transition   : all 300ms ease;
                -ms-transition    : all 300ms ease;
                -o-transition     : all 300ms ease;
                transition        : all 300ms ease;
            }
        }

        &:hover {
            svg {
                path {
                    fill: $cinzaescuro;
                }
            }
        }
    }
}

.vcard {
    overflow          : scroll;
    opacity           : 0;
    visibility        : hidden;
    max-height        : 0;
    position          : fixed;
    left              : 0;
    top               : 0;
    padding           : 0;
    z-index           : -1;
    width             : 100%;
    height            : 100%;
    background-color  : $branco;
    -webkit-transition: all 300ms ease;
    -moz-transition   : all 300ms ease;
    -ms-transition    : all 300ms ease;
    -o-transition     : all 300ms ease;
    transition        : all 300ms ease;

    .vcard_interno {
        position        : relative;
        display         : flex;
        flex-direction  : column;
        justify-content : flex-start;
        padding         : 0;
        width           : 100%;
        margin          : 0 auto;
        height          : 100%;
        padding         : 0;
        background-color: $branco;
    }

    .vcard_interno_topo {
        position        : relative;
        width           : 100%;
        padding         : 15px;
        background-color: $verdeclaro;
        text-align      : center;

        .fechar_vcard {
            position        : absolute;
            left            : 10px;
            top             : 10px;
            background-color: transparent;
            border          : 0;
            cursor          : pointer;

            svg {
                width : 40px;
                height: 40px;

                path {
                    -webkit-transition: all 300ms ease;
                    -moz-transition   : all 300ms ease;
                    -ms-transition    : all 300ms ease;
                    -o-transition     : all 300ms ease;
                    transition        : all 300ms ease;
                }
            }

            &:hover {
                svg {
                    path {
                        fill: $verdeescuro;
                    }
                }
            }
        }

        .perfil_retrato {
            width          : 100px;
            height         : 100px;
            object-fit     : cover;
            object-position: top;
            margin-bottom  : 10px;
        }

        h1 {
            font-family  : $sourcesans;
            color        : $branco;
            font-weight  : 300;
            font-size    : 22px;
            margin-bottom: 0;
        }

        h4 {
            font-family: $sourcesans;
            color      : $branco;
            font-weight: 300;
            font-size  : 16px;
        }
    }

    .info_vcard {
        width           : 100%;
        display         : flex;
        justify-content : space-evenly;
        background-color: $verdeclaro;
        border-top      : 1px solid rgba(230, 230, 230, 1);

        div {
            width     : 33%;
            max-width : 33%;
            padding   : 15px 10px 10px 10px;
            text-align: center;

            a {
                text-align : center;
                width      : 100%;
                color      : $branco;
                font-family: $sourcesans;
                font-weight: 400;
                font-size  : 14px;

                svg {
                    height       : 25px;
                    margin-bottom: 5px;
                }
            }
        }

        div:nth-of-type(2) {
            border-left : 1px solid rgba(230, 230, 230, 1);
            border-right: 1px solid rgba(230, 230, 230, 1);
        }
    }

    .vcard_interno_info {
        width           : 100%;
        padding         : 15px;
        background-color: $branco;

        .sidebar_info {
            margin-bottom: 10px;

            svg {
                width: 30px;
            }
        }

        p {
            display      : inline-block;
            font-family  : $sourcesans;
            color        : $cinzaescuro;
            margin-bottom: 0;
            font-size    : 14px;

            svg {
                width: 30px;
            }
        }

        a {
            font-family: $sourcesans;
            color      : $cinzaescuro;
            font-size  : 14px;
            word-break : break-word;

            svg {
                width: 30px;
            }

            &:hover {
                color          : $verdeclaro;
                text-decoration: underline !important;
            }
        }
    }

    a.download {
        position             : absolute;
        left                 : 0;
        bottom               : 0;
        display              : inline-block;
        background-color     : $cinzaescuro;
        text-align           : center;
        font-family          : $sourcesans;
        font-weight          : 400;
        color                : $branco;
        font-size            : 16px;
        width                : 100%;
        -webkit-border-radius: 0;
        border-radius        : 0;
        padding              : 20px 0;

        &:hover {
            background-color: $verdeclaro;
        }
    }

}

.boletim {
    background-color: $verdeescuro !important;
    &:hover {
        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%) !important;
    }
}
.noticia {
    background: linear-gradient(137.9deg, #008080 16.09%, #55BCBD 106.29%) !important;
    &:hover {
        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%) !important;
    }
}
.na-midia {
    background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%) !important;
    &:hover {
        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%) !important;
    }
}

.background-pagina {
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


#Menu .navbar-collapse > div {
    margin-left: 15px;
    margin-bottom: 15px;
}
#Menu .navbar-collapse > div a:nth-of-type(1) {
    font-family: "canada-type-gibson", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(111, 234, 235, 0.4);
    border-radius: 3px;
    padding: 5px 10px;
}
#Menu .navbar-collapse > div a:nth-of-type(2) {
    font-family: "canada-type-gibson", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(85, 188, 189, 0.4);
    border-radius: 3px;
    padding: 5px 6px;
    margin-left: 10px;
}

.responsabilidade .equidade .row .texto > div > div {
    max-height: 100px;
    margin-top: 30px;
    transition: all 500ms ease;
}
.responsabilidade .equidade .row .texto > div > div div div {
    width: 60%;
    transition: all 500ms ease;
}

.areas .texto .accordion .accordion-body ul li em {
	font-style: italic;
}

/* Small devices (smartphones, 480px ld or 320px pt and up) */
@media (max-width: 575px) and (orientation: landscape) {

    
    .qrcode img.logo_qr {
        width        : 200px;
        margin-bottom: 10px;
    }

    .qrcode img.qr {
        width: 70px;
    }

    .qrcode p {
        margin-bottom: 15px;
    }

    .vcard a.download {
        position: relative;
    }

    .vcard .vcard_interno {
        height: auto;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza {
        padding: 20px 75px;
    }

    #carousel .carousel-inner .carousel-item {
        background-position: center;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza p {
        font-size: 16px;
    }

    #Menu .navbar-brand img {
        height: 25px;
    }

    #Menu {
        padding: 8px 0;
    }

    #home {
        height     : 100vh;
        padding-top: 56px;
    }


    .banner-retrato {
        display: none;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza img {
        max-width: 65%;
    }



    .news .form form.wpcf7-form p:nth-of-type(1) {
        float : left;
        width : 49%;
        margin: 0 5px 10px 0;
    }

    .news .form form.wpcf7-form p:nth-of-type(2) {
        float : right;
        width : 49%;
        margin: 0 0 10px 5px;
    }


}

/* Small devices (smartphones, 480px ld or 320px pt and up) */
@media (min-width: 321px) and (orientation: portrait) {

    .escritorio .texto {
        padding-top: 50vh;
    }
    .escritorio .bloco2 .texto {
        padding-top: 40vh;
    }

    .vcard a.download {
        position: absolute;
    }

    .vcard .vcard_interno {
        height: 100%;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza p {
        font-size: 20px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza h3,
    #carousel .carousel-inner .carousel-item .banner-centraliza h4,
    #carousel .carousel-inner .carousel-item .banner-centraliza h5,
    #carousel .carousel-inner .carousel-item .banner-centraliza h6 {
        font-size  : 26px;
        line-height: 34px;
    }

    #home {
        height: 75vh;
    }

    footer .logo img.logorodape {
        padding: 0 75px;
    }

    #Menu .navbar-collapse ul li ul li a {
        font-size: 16px;
    }

    #menu-paginas .navbar-collapse ul li ul li a {
        font-size: 16px;
    }

    #carousel {
        .carousel-inner {
            .carousel-item {
                background-position: 75% center;
            }
        }
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza h1 {
        font-size: 26px;
    }



}

@media (min-width: 576px) and (orientation: landscape) {

    .qrcode img.logo_qr {
        width        : 200px;
        margin-bottom: 10px;
    }

    .qrcode img.qr {
        width: 160px;
    }

    .qrcode p {
        margin-bottom: 15px;
    }

    .vcard a.download {
        position: relative;
    }

    .vcard .vcard_interno {
        height: auto;
    }


    #Menu .navbar-brand img {
        height: 25px;
    }

    #Menu {
        padding: 8px 0;
    }

    #home {
        height     : 100vh;
        padding-top: 56px;
    }

    #carousel .carousel-inner .carousel-item {
        background-position: center;
    }


    #carousel .carousel-inner .carousel-item .banner-centraliza {
        padding: 20px 75px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza h1 {
        font-size: 26px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza img {
        max-width: 65%;
    }

    .news .form form.wpcf7-form p:nth-of-type(1) {
        float : left;
        width : 49%;
        margin: 0 5px 10px 0;
    }

    .news .form form.wpcf7-form p:nth-of-type(2) {
        float : right;
        width : 49%;
        margin: 0 0 10px 5px;
    }

}


/* Small devices (tablets pt, 768px and up) */
@media (min-width: 768px) {

    .escritorio .texto {
        padding-top: 300px;
        padding-bottom: 50px;
    }
    .escritorio .bloco2 .texto {
        padding-top: 285px;
    }

    .escritorio {
        padding-top: 80px;
    }

    .atualidadeshome .ind.maior .overlay > div h5 {
        font-size: 26px;
        line-height: 155%;
    }
    .atualidadeshome .ind.menor > div .texto > div h5 {
        font-size: 22px;
        line-height: 130%;
    }

    .responsabilidade .investimento .unico.texto > div {
        padding: 20px;
    }

    .responsabilidade .equidade .texto p {
        font-size: 20px;
    }
    .responsabilidade .equidade .texto h4 {
        font-size: 28px;
    }

    .blog .bloco-blog .bloco .ind.menor > div {
        aspect-ratio: 1/0.8;
    }
    .blog .bloco-blog .bloco .ind.menor > div .textoind {
        min-height: 130px;
    }

    .perfil .noticias-relacionadas .bloco .ind.menor > div {
        aspect-ratio: 1/0.8;
    }
    .publicacao .bloco-publicacao .bloco .ind.menor > div {
        aspect-ratio: 1/0.8;
    }
    .perfil .noticias-relacionadas .bloco .ind.menor > div .textoind {
        min-height: 130px;
    }
    .publicacao .bloco-publicacao .bloco .ind.menor > div .textoind {
        min-height: 130px;
    }
    .perfil {
        padding-top: 80px;
    }

    .escritorio {
        padding-top: 80px;
    }

    .atualidadeshome .ind.maior img {
        aspect-ratio: unset;
        height: 100%;
        object-fit: cover;
    }
    .atualidadeshome .ind.maior > div {
        height: 100%;
    }

    .atuacaohome .bloco .expansor .exp-item .exp-corpo.aberto {
        padding-bottom: 30px;
    }
    .atuacaohome .bloco .expansor .esquerda {
        width: 50%;
        padding-right: 30px;
    }
    .atuacaohome .bloco .expansor .direita {
        width: 50%;
    }
    .atuacaohome .texto p {
        margin-bottom: 50px;
    }

    .areas .texto .wpcf7 form.wpcf7-form .form_pref p:nth-of-type(1) {
        float: left;
        padding: 0 5px;
        width: 33%;
    }
    .areas .texto .wpcf7 form.wpcf7-form .form_pref p:nth-of-type(2) {
        float: left;
        padding: 0 5px;
        width: 33%;
    }
    .areas .texto .wpcf7 form.wpcf7-form .form_pref p:nth-of-type(3) {
        float: left;
        padding: 0 5px;
        width: 33%;
    }

    .responsabilidade .equidade .texto > div > div {
        display: flex;
        align-items: center;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0 ease;
    }
    .responsabilidade .equidade .row .texto > div > div {
        display: flex;
        align-items: center;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0 ease;
    }
    .responsabilidade .equidade .row .texto > div > div div div {
        width: 0;
        transition: all 500ms ease;
    }

    .responsabilidade .meioambiente {
        background-position: left bottom;
        background-size: cover;
    }

    .responsabilidade .investimento .unico > div img {
        max-width: 230px;
        max-height: 65%;
        transform: translateY(-30px);
    }

    .responsabilidade .investimento .duplo .texto {
        padding: 30px;
    }
    .responsabilidade .investimento {
        padding: 0 0 50px 0;
    }
    .responsabilidade .equidade .texto {
        padding: 0 50px;
    }
    .responsabilidade .equidade .texto > div > div {
        max-height: 0;
        overflow: hidden;
    }

    .responsabilidade .comite .texto h4 {
        font-size: 26px;
    }
    .responsabilidade .comite .texto h4 span {
        font-size: 32px;
    }


    .contato .bloco .texto a {
        font-size: 16px;
    }
    .contato .topo .texto h1 {
        margin-top: 0;
    }
    .contato .topo {
        background-image: url("https://smabr.com/wp-content/uploads/2022/09/bc-contato.png");
        background-position: right center;
        background-size: 65% 100%;
        background-repeat: no-repeat;
        background-color: #F1F2F2;
    }

    .blog .bloco-blog .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }

    .publicacao .bloco-publicacao .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }
    .publicacao .publicacao-conteudo .publicacao-texto ul {
        list-style: none;
        padding: 0 40px 0 20px;
    }
    .publicacao .publicacao-conteudo .publicacao-titulo p {
        margin-bottom: 0;
    }
    .publicacao .publicacao-conteudo .publicacao-titulo h2 {
        font-size: 40px;
    }
    .publicacao .publicacao-conteudo .publicacao-titulo > div {
        display: flex;
        justify-content: space-between;
    }
    .perfil .noticias-relacionadas .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }
    .perfil .noticias-relacionadas .bloco h5 {
        line-height: 100%;
    }

    .perfil .perfil-textos .texto .accordion .accordion-button {
        font-size: 28px;
    }
    .perfil .perfil-conteudo .texto {
        padding-top: 75px;
        padding-bottom: 50px;
    }
    .perfil .perfil-conteudo .foto {
        margin-top: 0;
    }

    .perfil .perfil-conteudo .texto h2 span {
        font-size: 42px;
    }
    .perfil .perfil-conteudo .texto h2 {
        font-size: 52px;
        padding: 0 20px;
        line-height: 80%;

    }
    .equipe .bloco h4 {
        line-height: 100%;
    }
    .equipe .bloco .equipe-ind {
        width: 25%;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .areas .tit h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    .areas .tit h1 span {
        font-size: 50px;
    }

    #Menu .navbar-collapse ul li ul li a {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
        color: #B2B2B2;
    }

    .escritorio .bloco2 .texto {
        padding-top: 0;
        padding-bottom: 0;
    }
    .escritorio .bloco2 {
        background-image: url("https://smabr.com/wp-content/uploads/2024/05/IMG-2.jpg");
        background-position: left center;
        background-size: 45% auto;
        background-repeat: no-repeat;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .escritorio .texto h3 {
        font-size: 40px;
    }
    .escritorio .texto {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .escritorio .bloco1 {
        background-color: #F1F2F2;
        background-image: url("https://smabr.com/wp-content/uploads/2022/08/escritorio-topo.png");
        background-position: right center;
        background-size: 50% 100%;
        background-repeat: no-repeat;
    }

    footer .info > a {
        font-size: 16px;
    }
    footer .logo p {
        font-size: 18px;
    }

    .atualidadeshome .ind.maior > div:hover .overlay > div h5 {
        padding-bottom: 30px;
    }
    .atualidadeshome .ind.maior .overlay {
        padding: 50px;
    }
    .atualidadeshome .topo a {
        font-size: 16px;
        padding: 5px 20px;
    }
    .atualidadeshome .topo h4 {
        font-size: 40px;
    }
    .equipehome .texto h3 {
        font-size: 40px;
    }
    .atuacaohome .texto h4 br {
        display: block;
    }
    .atuacaohome .texto h4 {
        font-size: 40px;
    }
    .atuacaohome .bloco .expansor .exp-item .exp-corpo {
        columns: 2;
    }
    .atuacaohome .bloco .expansor {
        display: flex;
        justify-content: space-evenly;
    }

    .blog .filtros-blog ul li a {
        margin-bottom: 0;
    }
    .blog .filtros-blog ul {
        margin-bottom: 0;
        align-items: center;
        flex-direction: row;
    }
    .blog .filtros-blog > div {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        display: flex;
        flex-wrap: wrap;
    }
    .blog .filtros-blog form input[type=text] {
        width: auto;;
    }
    .blog .filtros-blog h3 {
        font-size: 48px;
        line-height: 120%;
    }


    .areas .texto .accordion .accordion-body ul {
        columns: 2;
    }

    .news .row {
        padding: 30px;
    }
    footer .info > a {
        font-size: 16px;
    }
    footer .logo img.logorodape {
        width: 40%;
        margin-bottom: 30px;
    }
    footer .logo p br {
        display: block;
    }

    .equipehome .texto {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .apresentacao .texto {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza h1, #carousel .carousel-inner .carousel-item .banner-centraliza h2 {
        font-size: 48px;
    }
    #carousel .carousel-inner .carousel-item .banner-centraliza h3, #carousel .carousel-inner .carousel-item .banner-centraliza h4, #carousel .carousel-inner .carousel-item .banner-centraliza h5, #carousel .carousel-inner .carousel-item .banner-centraliza h6 {
        font-size: 38px;
    }

    .news .news_bloco {
        background-size: 20% 100%;
    }

    .qrcode .qrcode_interno {
        padding: 0 20%;
    }

    .qrcode img.logo_qr {
        width        : 350px;
        margin-bottom: 20px;
    }

    .qrcode p {
        margin-bottom: 50px;
    }

    .vcard .vcard_interno {
        width : 320px;
        height: 620px;
    }

    .vcard a.download {
        position: absolute;
    }

    footer .copyright {
        text-align: left;
    }
    footer .info {
        text-align: right;
        margin-top: 55px;
    }
    footer .info svg {
        margin-right: 0;
        margin-left: 15px;
    }

    .publicacao .publicacao-conteudo .publicacao-titulo h2 {
        font-size: 36px;
    }

    .publicacao .publicacao-conteudo .publicacao-texto blockquote {
        padding: 10px 30px;
    }

    .publicacao .publicacao-conteudo .publicacao-texto blockquote p {
        font-size  : 20px;
        line-height: 170%;
    }

    .publicacao .publicacao-conteudo .publicacao-texto img.alignleft {
        width : 50%;
        margin: 0 30px 0 0;
    }

    .publicacao .publicacao-conteudo .publicacao-texto img.alignright {
        width : 50%;
        margin: 0 0 0 30px;
    }

    .publicacao .publicacao-conteudo .publicacao-texto img.aligncenter {
        width      : 100%;
        aspect-ratio: 1/0.5;
        object-fit: cover;
    }

    .publicacao .publicacao-conteudo .publicacao-texto div.alignleft {
        width : 50%;
        margin: 0 30px 10px 0;
    }

    .publicacao .publicacao-conteudo .publicacao-texto div.alignright {
        width : 50%;
        margin: 0 0 10px 30px;
    }

    .publicacao .publicacao-conteudo .publicacao-texto div.aligncenter {
        width      : 80%;
        margin-left: 10%;
    }

    .disclaimer {
        text-align: left;
    }

    .disclaimer p {
        margin: 0;
    }


    #home {
        height: 620px;
    }

    #carousel .carousel-control-next svg,
    #carousel .carousel-control-prev svg {
        width : 40px;
        height: 40px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 15%;
    }

    #carousel .carousel-inner .carousel-item .carousel_overlay .carousel_alinha {
        width: 768px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza img {
        width     : auto;
        max-width : 100%;
        height    : auto;
        max-height: 50%;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza {
        padding: 40px 100px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza p {
        font-size    : 32px;
        line-height  : 36px;
        margin-bottom: 0;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza h2 strong {
        font-size  : 90px;
        line-height: 90px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza a {
        font-size: 22px;
        padding  : 10px 20px;
    }

    .news .form form.wpcf7-form {
        margin-top: 0;
    }

    .news .form form.wpcf7-form p:nth-of-type(1) {
        float        : left;
        width        : 43%;
        padding-right: 10px;
        margin-bottom: 0;
    }
    .news .form form.wpcf7-form p:nth-of-type(2) {
        float        : left;
        width        : 43%;
        padding-right: 10px;
        margin-bottom: 0;
    }
    .news .form form.wpcf7-form p:nth-of-type(3) {
        float: right;
        width: 14%;
        margin: 0;
    }

    .titulo {
        background-position: center;
    }

    .titulo .titulo-overlay h1 {
        font-size: 42px;
    }

    .blog_cat {
        padding-top   : 0;
        padding-bottom: 0;
    }

    .blog_procura {
        padding-top   : 0;
        padding-bottom: 0;
    }


}

@media (min-width: 768px) and (orientation: landscape) {

    .qrcode .qrcode_interno {
        padding: 0 20%;
    }

    .qrcode img.logo_qr {
        width        : 250px;
        margin-bottom: 20px;
    }

    .qrcode p {
        margin-bottom: 15px;
    }

    .qrcode img.qr {
        width: 80px;
    }

    .vcard a.download {
        position: relative;
    }

    .vcard .vcard_interno {
        height: auto;
    }



    #home {
        height: 450px;
    }

    #carousel .carousel-inner .carousel-item1 .carousel_overlay .carousel_1 {
        margin-bottom: 0;
    }

    #carousel .carousel-inner .carousel-item1 .carousel_overlay p {
        margin     : 10px 0 0 0;
        font-size  : 20px;
        line-height: 26px;
    }

    #carousel .carousel-inner .carousel-item1 .carousel_overlay {
        text-align: left;
    }

    #carousel .carousel-inner .carousel-item1 .carousel_overlay img {
        width: 100%;
    }


    #carousel .carousel-inner .carousel-item2 .carousel_overlay .carousel_1 h1 {
        font-size  : 40px;
        line-height: 40px;
    }

    #carousel .carousel-inner .carousel-item2 .carousel_overlay p {
        margin-bottom: 0;
    }

    #carousel .carousel-inner .carousel-item2 .carousel_overlay .covid_icones svg {
        height: 60px;
    }

    #carousel .carousel-inner .carousel-item2 .carousel_overlay .carousel_2 {
        margin-bottom: 15px;
    }

    #carousel .carousel-inner .carousel-item3 .carousel_overlay img {
        width: 200px;
    }

    #carousel .carousel-inner .carousel-item3 .carousel_overlay p {
        margin     : 10px 0;
        font-size  : 18px;
        line-height: 24px;
    }

    #carousel .carousel-inner .carousel-item3 .carousel_overlay .carousel_1.carousel_dir {
        text-align: left;
    }

    #carousel .carousel-inner .carousel-item3 .carousel_overlay .carousel_1.carousel_esq {
        text-align: right;
    }




}


/* Medium devices (desktops and tablets ld, 992px and up) */
@media (min-width: 992px) {
    
    .responsabilidade .equidade .texto p {
        font-size: 22px;
    }
    .responsabilidade .investimento .unico > div img {
        max-width: 300px;
    }
    .responsabilidade .equidade .texto h4 {
        font-size: 40px;
    }

    .blog .bloco-blog .bloco .ind.menor img {
        max-height: 75%;
        min-height: 50%;
    }
    .blog .bloco-blog .bloco .ind.menor > div {
        aspect-ratio: 1/0.6;
    }

    .publicacao .bloco-publicacao .bloco .ind.menor img {
        max-height: 75%;
        min-height: 50%;
    }
    .publicacao .bloco-publicacao .bloco .ind.menor > div {
        aspect-ratio: 1/0.6;
    }

    .perfil .noticias-relacionadas .bloco .ind.menor img {
        max-height: 75%;
        min-height: 50%;
    }
    .perfil .noticias-relacionadas .bloco .ind.menor > div {
        aspect-ratio: 1/0.6;
    }
    .perfil {
        padding-top: 100px;
    }

    footer .logo {
        text-align: left;
        margin-bottom: 0;
    }

    .news .form form.wpcf7-form p:nth-of-type(3) {
        width: 12%;
    }

    .equipe .bloco .equipe-ind {
        width: 20%;
    }
    .areas .tit h1 {
        margin-bottom: 0;
    }

    .apresentacao {
        background-image: url("https://smabr.com/wp-content/uploads/2022/07/apresentacao.png");
        background-position: -25% center;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-color: #F1F2F2;
    }

    .equipehome .texto {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .equipehome {
        background-position: left center;
        background-size: 49% auto;

    }

    .responsabilidade {
        padding-top: 138px;
    }
    .equipe {
        padding-top: 160px;
    }
    #Menu .navbar-collapse > div {
        margin-left: 0;
        margin-bottom: 0;
    }
    .equipe .filtros .iniciais {
        flex-wrap: nowrap;
    }

    .contato {
        margin-top: 138px;
        padding-top: 0;
    }

    .blog {
        margin-top: 160px;
        padding-top: 50px;
    }

    .publicacao {
        margin-top: 138px;
        padding-top: 50px;
    }

    .perfil {
        padding-top: 138px;
    }

    .areas {
        margin-top: 139px;
        padding-top: 50px;
    }
    .areas .tit {
        padding-top: 0;
    }

    .escritorio {
        padding-top: 138px;
        background-position: bottom center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    .qrcode img.logo_qr {
        width        : 350px;
        margin-bottom: 20px;
    }

    .qrcode p {
        margin-bottom: 50px;
    }

    .qrcode img.qr {
        width: 160px;
    }

    .vcard .vcard_interno {
        width : 320px;
        height: 620px;
    }

    .vcard a.download {
        position: absolute;
    }

    #Menu {
        display         : none;
        width           : 100%;
        top             : 0;
        padding         : 10px 0;
        border          : 0;
        background-color: transparent;

        .navbar-brand {
            padding: 0;
            margin : 0;

            img {
                height : 65px;
                padding: 0;
            }
        }

        .navbar-collapse {
            justify-content: flex-end;
            flex-direction: column;
            align-items: flex-end;
            padding-top    : 0;
            > div {
                margin-bottom: 25px;
                a:nth-of-type(1) {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    color: #FFFFFF;
                    background: rgba(111,234,235,0.4);
                    border-radius: 3px;
                    padding: 5px 10px;
                    &:hover {
                        color: #FFFFFF;
                        background: $verdeclaro;
                    }
                }
                a:nth-of-type(2) {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    color: #FFFFFF;
                    background: rgba(85,188,189,0.4);
                    border-radius: 3px;
                    padding: 5px 6px;
                    margin-left: 10px;
                    &:hover {
                        color: #FFFFFF;
                        background: $verdeclaro;
                    }
                }
            }
            > ul {
                justify-content: flex-end;
                flex-direction : row;
                align-items    : center;
                margin         : 0;
                padding-left   : 30px;

                > li {
                    position: relative;
                    display: inline-block;
                    padding: 0;
                    > a {
                        padding: 10px;
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 155%;
                        color: #FFFFFF;
                        border-bottom: 3px solid transparent;
                        position: relative;
                        &:hover,
                        &:focus {
                            background-color: transparent;
                            border-bottom: 3px solid $verdeclaro;
                        }
                    }

                    > ul {
                        border-top: 2px solid transparent;
                        display              : block;
                        max-height           : 0;
                        z-index              : -1;
                        position             : absolute;
                        min-width            : unset;
                        background-color     : $branco;
                        border-radius        : 0;
                        top: calc(100% - 3px);
                        margin               : 0 auto;
                        padding              : 0;
                        overflow             : hidden;
                        border-left          : 0;
                        li {
                            padding: 5px 10px 0 10px;
                            a {
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 600;
                                font-size: 16px;
                                line-height: 120%;
                                color: #B2B2B2;
                                padding: 10px 20px 15px 10px;
                                border-bottom: 1px solid $cinza1;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover,
                                &:focus {
                                    font-family: $sourcesans;
                                    font-style: normal;
                                    font-weight: 600;
                                    font-size: 16px;
                                    line-height: 120%;
                                    color: #695E59;
                                    background-color: transparent;
                                }
                            }
                            ul {
                                border-top: 2px solid transparent;
                                display              : block;
                                max-height           : 0;
                                z-index              : -1;
                                position             : absolute;
                                min-width            : unset;
                                background-color     : $branco;
                                border-radius        : 0;
                                top: -5px; left: 100%;
                                margin               : 0 auto;
                                padding              : 0;
                                overflow             : hidden;
                                border-left          : 0;
                                background-color: transparent;
                                li {
                                    padding: 5px 10px;
                                    a {
                                        font-family: $sourcesans;
                                        font-style: normal;
                                        font-weight: 600;
                                        font-size: 16px;
                                        line-height: 120%;
                                        color: #fff;
                                        padding: 5px 10px;
                                        border-bottom: 0;
                                        -webkit-transition: all 300ms ease;
                                        -moz-transition: all 300ms ease;
                                        -ms-transition: all 300ms ease;
                                        -o-transition: all 300ms ease;
                                        transition: all 300ms ease;
                                        &:hover,
                                        &:focus {
                                            font-family: $sourcesans;
                                            font-style: normal;
                                            font-weight: 600;
                                            font-size: 16px;
                                            line-height: 120%;
                                            color: #695E59;
                                            background-color: transparent;
                                        }
                                    }
        
                                }
                            }
                        }
                        > li.menu-item-has-children {
                            > a {
                                &:after {
                                    content: url('../images/menu-seta.svg');
                                    position: absolute; right: 10px; top: 15px;
                                }
                            }
                        }
                    }
                }
                > li.menu-item-has-children {
                    padding-right: 15px;
                    > a {
                        &:after {
                            content: url('../images/seta-menu-baixo.svg');
                            position: absolute;
                            right: -10px;
                            top: 10px;
                            border: 0;
                        }
                    }
                }
                > li.active > a {
                    color: #878787;
                    font-weight: 400;
                    border-bottom: 3px solid $verdeclaro;
                }
            }
        }
    }
    #Menu .navbar-collapse > ul > li:hover > ul.dropdown-menu {
        max-height: 1000px;
        z-index   : 9998;
        border-top: 5px solid $verdeclaro;
        background-color: #fff;
        overflow: visible;
    }
    #Menu .navbar-collapse > ul > li > ul.dropdown-menu > li:hover > ul.dropdown-menu {
        max-height: 1000px;
        z-index   : 9998;
        border-top: 5px solid transparent;
        background-color: $verdeclaro;
    }

    #menu-paginas {
        display         : block;
        width           : 100%;
        top             : -100%;
        padding         : 20px 0;
        border          : 0;
        background-color: $branco;

        .navbar-brand {
            padding: 0;
            margin : 0;

            img {
                height : 65px;
                padding: 0;
            }
        }

        .navbar-collapse {
            justify-content: flex-end;
            flex-direction: column;
            align-items: flex-end;
            padding-top    : 0;
            > div {
                margin-bottom: 25px;
                margin-right: 10px;
                a:nth-of-type(1) {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    color: #FFFFFF;
                    background: $verdeclaro;
                    border-radius: 3px;
                    padding: 5px 10px;
                    &:hover {
                        color: #FFFFFF;
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
                a:nth-of-type(2) {
                    font-family: $gibson;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 130%;
                    text-align: center;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    color: $cinza4;
                    background: $cinza1;
                    border-radius: 3px;
                    padding: 5px 6px;
                    margin-left: 10px;
                    &:hover {
                        color: #FFFFFF;
                        background: linear-gradient(135.42deg, #176076 23.03%, #1E7F76 100.19%);
                    }
                }
            }
            > ul {
                justify-content: flex-end;
                flex-direction : row;
                align-items    : center;
                margin         : 0;
                padding-left   : 30px;

                > li {
                    position: relative;
                    display: inline-block;
                    padding: 0;
                    > a {
                        padding: 10px;
                        font-family: $sourcesans;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 155%;
                        color: #878787;
                        border-bottom: 3px solid transparent;
                        &:hover,
                        &:focus {
                            background-color: transparent;
                            border-bottom: 3px solid $verdeclaro;
                        }
                    }
                    > ul {
                        border-top: 2px solid transparent;
                        display              : block;
                        max-height           : 0;
                        z-index              : -1;
                        position             : absolute;
                        min-width            : unset;
                        background-color     : $branco;
                        border-radius        : 0;
                        top: calc(100% - 3px);
                        margin               : 0 auto;
                        padding              : 0;
                        overflow             : hidden;
                        border-left          : 0;
                        box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);

                        li {
                            padding: 5px 10px 0 10px;
                            a {
                                font-family: $sourcesans;
                                font-style: normal;
                                font-weight: 600;
                                font-size: 16px;
                                line-height: 120%;
                                color: #B2B2B2;
                                padding: 10px 20px 15px 10px;
                                border-bottom: 1px solid $cinza1;
                                -webkit-transition: all 300ms ease;
                                -moz-transition: all 300ms ease;
                                -ms-transition: all 300ms ease;
                                -o-transition: all 300ms ease;
                                transition: all 300ms ease;
                                &:hover,
                                &:focus {
                                    font-family: $sourcesans;
                                    font-style: normal;
                                    font-weight: 600;
                                    font-size: 16px;
                                    line-height: 120%;
                                    color: #695E59;
                                    background-color: transparent;
                                }
                            }
                            ul {
                                border-top: 2px solid transparent;
                                display              : block;
                                max-height           : 0;
                                z-index              : -1;
                                position             : absolute;
                                min-width            : unset;
                                background-color     : $branco;
                                border-radius        : 0;
                                top: -5px; left: 100%;
                                margin               : 0 auto;
                                padding              : 0;
                                overflow             : hidden;
                                border-left          : 0;
                                background-color: transparent;
                                box-shadow: 0px 4px 30px rgba(0, 128, 128, 0.2);

                                li {
                                    padding: 5px 10px;
                                    a {
                                        font-family: $sourcesans;
                                        font-style: normal;
                                        font-weight: 600;
                                        font-size: 16px;
                                        line-height: 120%;
                                        color: #fff;
                                        padding: 5px 10px;
                                        border-bottom: 0;
                                        -webkit-transition: all 300ms ease;
                                        -moz-transition: all 300ms ease;
                                        -ms-transition: all 300ms ease;
                                        -o-transition: all 300ms ease;
                                        transition: all 300ms ease;
                                        &:hover,
                                        &:focus {
                                            font-family: $sourcesans;
                                            font-style: normal;
                                            font-weight: 600;
                                            font-size: 16px;
                                            line-height: 120%;
                                            color: #695E59;
                                            background-color: transparent;
                                        }
                                    }
        
                                }
                            }
                        }
                        > li.menu-item-has-children {
                            > a {
                                &:after {
                                    content: url('../images/menu-seta.svg');
                                    position: absolute; right: 10px; top: 15px;
                                }
                            }
                        }
                    }
                }
                > li.menu-item-has-children {
                    padding-right: 15px;
                    > a {
                        &:after {
                            content: url('../images/seta-menu-baixo.svg');
                            position: absolute;
                            right: 5px;
                            top: 10px;
                            border: 0;
                        }
                    }
                }
                > li.active > a {
                    color: #878787;
                    font-weight: 400;
                    border-bottom: 3px solid $verdeclaro;
                }
            }
        }
    }
    #menu-paginas .navbar-collapse > ul > li:hover > ul.dropdown-menu {
        max-height: 1000px;
        z-index   : 9998;
        border-top: 5px solid $verdeclaro;
        background-color: #fff;
        overflow: visible;
    }
    #menu-paginas .navbar-collapse > ul > li > ul.dropdown-menu > li:hover > ul.dropdown-menu {
        max-height: 1000px;
        z-index   : 9998;
        border-top: 5px solid transparent;
        background-color: $verdeclaro;
    }

    #home {
        height     : 100vh;
        padding-top: 0;
    }

    #carousel .carousel-inner .carousel-item {
        background-position: center;
    }

    #carousel .carousel-inner .carousel-item .carousel_overlay {
        align-items: flex-end;
    }

    #carousel .carousel-inner .carousel-item .carousel_overlay .carousel_alinha {
        width: 835px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza {
        padding: 75px 15px;
    }

    #carousel .carousel-inner .carousel-item .banner-centraliza p br {
        display: block;
    }

    #carousel .carousel-control-next,
    #carousel .carousel-control-prev {
        width: 8%;
    }


}

@media (min-width: 992px) and (orientation: portrait) {}


/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .responsabilidade .investimento .duplo .texto {
        padding: 50px;
    }

    .news .form form.wpcf7-form p:nth-of-type(3) {
        width: 9%;
    }

    .blog .bloco-blog .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }
    .blog .bloco-blog .bloco .ind.menor > div {
        aspect-ratio: 1/1.1;
    }
    .blog .bloco-blog .bloco .ind.menor > div .textoind {
        min-height: 50%;
    }


    .publicacao .bloco-publicacao .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }
    .publicacao .bloco-publicacao .bloco .ind.menor > div {
        aspect-ratio: 1/1.1;
    }
    .publicacao .bloco-publicacao .bloco .ind.menor > div .textoind {
        min-height: 50%;
    }

    .perfil .noticias-relacionadas .bloco .ind.menor img {
        max-height: 50%;
        min-height: 50%;
    }
    .perfil .noticias-relacionadas .bloco .ind.menor > div {
        aspect-ratio: 1/1.1;
    }
    .perfil .noticias-relacionadas .bloco .ind.menor > div .textoind {
        min-height: 50%;
    }
    .equipe .bloco .equipe-ind > div .texto h5 {
        font-size: 20px;
    }

    .atualidadeshome .ind.maior > div {
        height: auto;
    }
    .atualidadeshome .ind.maior img {
        width: 100%;
        aspect-ratio: 1/0.9;
        height: auto;
        transition: all 300ms ease;
    }

    .equipehome {
//         background-image: url("https://smabr.com/wp-content/uploads/2022/07/equipe-escritorio.jpg");
        background-image: url("https://smabr.com/wp-content/uploads/2025/06/ensaio-scaled.jpg");
		background-position: left center;
        background-size: 54% auto;
        background-repeat: no-repeat;
    }

    .atuacaohome .bloco .expansor .esquerda {
        width: 415px;
        padding-right: 30px;
    }
    .atuacaohome .bloco .expansor .direita {
        width: 335px;
    }

    .atuacaohome .texto p {
        margin-bottom: 0;
    }


    .apresentacao {
        background-position: left center;
        background-size: 50% auto;
        background-repeat: no-repeat;
        background-color: #F1F2F2;
    }

    .equipehome {
        background-size: 54% auto;
    }

    .responsabilidade .investimento .unico.texto > div img {
        height: 80px;
    }
    .responsabilidade .investimento .unico.texto > div p {
        font-size: 16px;
    }
    .responsabilidade .investimento .unico.texto > div {
        padding: 40px;
    }


    div.nomobile {
        display: none;    
    }

    #Menu {
        padding: 50px 0 10px 0;
    }

    .news .form form.wpcf7-form p:nth-of-type(1) {
        width: 45%;
    }
    .news .form form.wpcf7-form p:nth-of-type(2) {
        width: 45%;
    }

    .qrcode p br {
        display: block;
    }

    footer .logo {
        text-align   : left;
        margin-bottom: 0;
    }
    footer .container {
        max-width: 1080px;
    }
    footer .sedes p span {
        font-size: 16px;
    }
    footer .sedes {
        padding: 0;
    }
    footer .sedes2 p {
        font-size: 13px;
    }
    footer .sedes2 p span {
        font-size: 14px;

    }

    #Menu .navbar-brand img {
        height: 100px;
    }
    #menu-paginas .navbar-brand img {
        height: 85px;
    }


    #home {
        max-height: 100vh;
    }

    #carousel .carousel-control-next,
    #carousel .carousel-control-prev {
        width: 5%;

        svg {
            width : 65px;
            height: 65px;
        }
    }

    #carousel .carousel-inner .carousel-item .carousel_overlay .carousel_alinha {
        width      : 1140px;
        padding-top: 0;
    }
    #carousel .carousel-inner .carousel-item .banner-centraliza {
        padding: 135px 15px 50px 15px;
    }


}



@media (min-width: 1440px) {

    .responsabilidade .investimento .unico.texto > div img {
        height: 100px;
    }
    .responsabilidade .investimento .unico.texto > div p {
        font-size: 18px;
    }
    .responsabilidade .investimento .unico.texto > div {
        padding: 50px;
    }

    .equipe .filtros .iniciais a {
        letter-spacing: 0.9em;
    }

    .escritorio .bloco2 .texto {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    footer .container {
        max-width: 1250px;
    }

}

@media (min-width: 1920px) {

    .escritorio .bloco1 {
        background-size: 50% auto;
    }
    .escritorio .bloco1 .texto {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .escritorio .bloco2 .texto {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .equipehome {
        background-size: 48% auto;
     }
     .equipehome .texto {
        padding-top: 100px;
        padding-bottom: 100px;
    }


    .apresentacao .texto {
        padding-top: 100px;
        padding-bottom: 150px;
    }
    .apresentacao {
        background-size: 46% 100%;
    }

    .news .news_bloco {
        background-size: 30% 100%;
    }

}

@media (min-width: 2560px) {

    .apresentacao {
        background-size: 46% auto;
    }
    .equipehome {
        background-size: 37% auto;
    }


}


.embed-video {
    position      : relative;
    padding-bottom: 56.25%;
    height        : 0;
    overflow      : hidden;
    max-width     : 100%;
    margin        : 0 0 40px 0;

    iframe,
    object,
    embed {
        position: absolute;
        top     : 0;
        left    : 0;
        width   : 100%;
        height  : 100%;
    }
}

.navigation {
    margin-top: 50px !important;
    text-align: center;
    width     : 100%;

    ul {
        padding: 0;
    }
}

.navigation li {
    display: inline;
}

.navigation li a {
    width                : 37px;
    height               : 37px;
    border               : 0;
    -webkit-border-radius: 2px;
    border-radius        : 2px;
    color                : #A7A9AC;
    cursor               : pointer;
    padding              : 5px 10px;
    text-decoration      : none;
    display              : inline-block;
    margin-top           : 5px;
    font-size            : 18px;
    font-weight          : 700;
    font-family          : $sourcesans;
    -webkit-transition   : all 300ms ease;
    -moz-transition      : all 300ms ease;
    -ms-transition       : all 300ms ease;
    -o-transition        : all 300ms ease;
    transition           : all 300ms ease;
}

.navigation li a:hover,
.navigation li.active a {
    color: $verdeclaro;
}

.fancybox__container {
    z-index: 10000 !important;
}
.fancybox__content>.carousel__button.is-close {
    top: 20px !important;
    right: 20px !important;
    color: var(--fancybox-color, #9D9D9C) !important;
    background-color: rgba(196, 196, 196,0.35);
    svg {
        filter: unset;
    }
}