@import "carousel-fade.css";


:root {
    font-size: 62.5%;
    --height-menu: 9rem;
    --font-geral: "Montserrat", sans-serif;
    /* ============== */
    --color-Deep-blue: #004AAD;
    --color-Bright-Blue: #1166E5;
    --color-Dark-Blue: #02214A;
    --color-Light-blue: #E5EFFF;
    --color-Ultra-Light-Blue: #F2F7FF;
    --color-Cyan: #01B0D1;
    --color-Ultra-Light-Gray: #EDEEF2;
    --color-Dark-Gray: #505050;
    --color-Light-Gray: #999999;
    --color-White: #FFFFFF;
    --color-Ultra-Bright-Purple: #9747FF;
    --color-Green-focus: #54FEC2;
    --color-Green-2-focus: #86FFC6;
    /* ============== */
    /* ============== */
    --border-radius-geral: 2rem;
    --swiper-navigation-color: #000;
}

@media (min-width: 1200px) AND (max-width:1439px) {
    :root {
        font-size: 60%;
    }
}

@media (min-width: 992px) AND (max-width:1199px) {
    :root {
        font-size: 55%;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 55%;
    }
}

@media (max-width: 420px) {
    :root {
        font-size: 50%;
    }
}

@media (max-width: 300px) {
    :root {
        font-size: 30%;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding: var(--scroll-padding);
}

html,
body {
    background-color: var(--color-Ultra-Light-Blue);
    font-family: var(--font-geral);
    font-size: 19px;
    line-height: 32px;
    color: var(--color-Dark-Blue);
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

html.has-slideshow {
    scroll-padding: unset !important;
}

html.has-slideshow body {
    padding-top: 0;
}

/* ======== scrollbar custom ======== */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color-Ultra-Light-Gray);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-Deep-blue);
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-Dark-Blue);
}
/* ======== scrollbar custom ======== */

img {
    max-width: 100%;
    display: block;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

body.no-overflow.modal-open {
    overflow: hidden !important;
}

iframe {
    max-width: 100%;
}

b,
strong {
    font-weight: 600;
}

.w-auto {
    width: auto !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.website_animated {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.website_animated.show_animation {
    opacity: 1;
}

.margin-bottom-35 {
    margin-bottom: 3.5rem;
}

.style-off {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button.close {
    background-color: transparent !important;
    font-size: 2.5rem;
}

.box-img {
    background-color: #fff;
    border-radius: 15px;
}

.box-img img {
    border-radius: 15px;
}

.conteudos strong {
    color: var(--color-Dark-Gray);
}

.conteudos ul {
    padding-left: 20px;
}

.conteudos ul li {
    margin-bottom: 20px;
}

.conteudos ul li::marker {
    color: var(--color-Cyan);
}

/* ==================== Style Buttons====================*/
.btn.btn-geral,
.btn.btn-geral svg,
.btn.btn-geral svg path {
-webkit-transition: all .20s ease-in;
-ms-transition: all .20s ease-in;
-moz-transition: all .20s ease-in;
-o-transition: all .20s ease-in;
transition: all .20s ease-in;
}

.btn.btn-geral {
    border-radius: 12px;
    padding: 20px 15px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    border: 1px solid transparent;
    min-width: 149px;
}

.btn.btn-geral.btn-round {
    border-radius: 20px;
    padding: 8px 25px;
}

/* == */
.btn.btn-geral.primary-option {
    background-color: var(--color-Deep-blue);
    color: #fff;
}

.btn.btn-geral.primary-option:hover {
    background-color: transparent;
    color: var(--color-Deep-blue);
    border-color: var(--color-Deep-blue);
}

.btn.btn-geral.primary-option:active {
    background-color: transparent;
    color: var(--color-Dark-Blue);
    border-color: var(--color-Dark-Blue);
}

.btn.btn-geral.primary-option:focus {
    background-color: var(--color-Deep-blue);
    color: #fff;
    outline: 2px solid var(--color-Ultra-Bright-Purple);
}

/* == */

/* == */
.btn.btn-geral.secondary-option {
    background-color: transparent;
    color: var(--color-Deep-blue);
    border-color: var(--color-Deep-blue);
}

.btn.btn-geral.secondary-option:hover {
    background-color: var(--color-Deep-blue);
    color: #fff;
}

.btn.btn-geral.secondary-option:hover svg path {
    fill: #fff;
}

.btn.btn-geral.secondary-option:active {
    background-color: var(--color-Dark-Blue);
    color: #fff;
    border: transparent;
}

.btn.btn-geral.secondary-option:focus {
    background-color: transparent;
    color: var(--color-Deep-blue);
    border-color: var(--color-Deep-blue);
    outline: 2px solid var(--color-Ultra-Bright-Purple);
}

.btn.btn-geral.secondary-option:focus svg path {
    fill: var(--color-Deep-blue);
}

/* == */

.btn.btn-geral.primary-option:disabled,
.btn.btn-geral.primary-option[disabled],
.btn.btn-geral.secondary-option:disabled,
.btn.btn-geral.secondary-option[disabled] {
    background-color: var(--color-Light-Gray);
    color: #fff;
    border-color: var(--color-Light-Gray);
    cursor: not-allowed;
    /* opacity: 0.7; */
}

/* == */
.btn.btn-geral.link-option,
a {
    background-color: transparent;
    color: var(--color-Deep-blue);
    border-color: transparent;
}
.btn.btn-geral.link-option {
    text-decoration: underline !important;
}

.btn.btn-geral.link-option:hover,
a:hover {
    color: var(--color-Bright-Blue);
}

.btn.btn-geral.link-option:active,
a:active {
    color: var(--color-Dark-Blue);
}

.btn.btn-geral.link-option:focus
a:focus {
    color: var(--color-Deep-blue);
    outline: 2px solid var(--color-Ultra-Bright-Purple);
}

.btn.btn-geral.link-option:disabled,
.btn.btn-geral.link-option[disabled],
a:disabled,
a[disabled] {
    color: var(--color-Light-Gray);
    cursor: not-allowed;
    /* opacity: 0.7; */
}

/* == */

/* Styles with Background */
/* == */
.btn.btn-geral.primary-option-wbg {
    color: var(--color-Deep-blue);
    background-color: #fff;
}

.btn.btn-geral.primary-option-wbg:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn.btn-geral.primary-option-wbg:active {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn.btn-geral.primary-option-wbg:focus {
    color: var(--color-Deep-blue);
    background-color: #fff;
    outline: 2px solid var(--color-Green-2-focus);
}

.btn.btn-geral.primary-option-wbg:disabled,
.btn.btn-geral.primary-option-wbg[disabled] {
    background-color: var(--color-Ultra-Light-Gray);
    color: var(--color-Dark-Gray);
    border-color: var(--color-Ultra-Light-Gray);
    cursor: not-allowed;
    /* opacity: 0.7; */
}

/* == */

/* == */
.btn.btn-geral.secondary-option-wbg {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn.btn-geral.secondary-option-wbg:hover {
    color: var(--color-Deep-blue);
    background-color: #fff;
}

.btn.btn-geral.secondary-option-wbg:active {
    color: var(--color-Deep-blue);
    background-color: #fff;
}

.btn.btn-geral.secondary-option-wbg:focus {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    outline: 2px solid var(--color-Green-2-focus);
}

.btn.btn-geral.secondary-option-wbg:disabled,
.btn.btn-geral.secondary-option-wbg[disabled] {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* == */


/* == */
.btn.btn-geral.link-option-wbg {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
    text-decoration: underline !important;
}

.btn.btn-geral.link-option-wbg:hover {
    color: var(--color-Cyan);
}

.btn.btn-geral.link-option-wbg:active {
    color: var(--color-Cyan);
}

.btn.btn-geral.link-option-wbg:focus {
    color: #fff;
    outline: 2px solid var(--color-Ultra-Bright-Purple);
}

.btn.btn-geral.link-option-wbg:disabled,
.btn.btn-geral.link-option-wbg[disabled] {
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* == */
/* Styles with BackGround */
/* ==================== Style Buttons ==================== */

table.borderless>tbody>tr>td,
table.borderless>tbody>tr>th,
table.borderless>tfoot>tr>td,
table.borderless>tfoot>tr>th,
table.borderless>thead>tr>td,
table.borderless>thead>tr>th {
    border: none;
}

.btn.effect-lr {
    background-color: rgba(var(--cor-website-1-rgb), 1);
    color: #fff;
    padding: 3rem;
    cursor: pointer;
    display: inline-block;
    -moz-user-select: none;
    letter-spacing: 1px;
    line-height: 0;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    font-size: 1.6rem;
    font-weight: 600;
}

.btn.effect-lr::before {
    content: "";
    --percentage: 25;
    --opacity: calc(var(--percentage) * 0.01);
    background: linear-gradient(to top, rgba(0, 0, 0, var(--opacity)), rgba(0, 0, 0, var(--opacity)))var(--cor-website-1);
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    z-index: 1;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
}

.btn.effect-lr:hover::before {
    transform: scaleX(1);
    color: #fff !important;
    z-index: -1;
}

.titulo-conteudo-2 {
    font-size: 2.6rem !important;
}

.titulo-conteudo-3 {
    font-size: 3.4rem !important;
}

.titulo-conteudo-4 {
    font-size: 2.2rem !important;
}

.titulo-conteudo-5 {
    font-size: 2rem !important;
}

.titulo-conteudo-6 {
    font-size: 1.6rem !important;
}

.titulo-conteudo {
    font-size: 4.2rem;
    font-weight: normal;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.subtitulo-conteudo {
    color: var(--color-Dark-Blue);
    font-weight: 500;
    font-size: 29px;
    line-height: 38px;
    margin-bottom: 1.4rem;
}

.title-alt,
.subtitle {
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.conteudos a {
    /* color: #000; */
    text-decoration: underline;
    font-weight: 600;
}

a,
.button {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

a.back-history-link {
    color: #b2b2b2;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
}

a.back-history-link:hover {
    color: #000;
    text-decoration: underline;
}

.titulo-seccao-geral {
    line-height: 4.8rem;
    font-size: 4.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--color-Deep-blue);
}

.titulo-seccao-geral.bigger {
    font-size: 6.3rem;
    line-height: 8rem;
}

.subtitulo-seccao-geral {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 3rem;
    margin-bottom: 3rem;
    color: var(--color-Dark-Gray);
}

.separador-bloco {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: normal;
}

.sub-menu li {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.sub-menu li.active {
    text-decoration: underline
}

.btn.read-more {
    font-size: 1.6rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -ms-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}

.btn.read-more.focus,
.btn.read-more:focus {
    box-shadow: none;
}

.btn.read-more:hover,
.card-categoria-icon:hover .btn.read-more {
    color: var(--cor-website-1);
}

.meta-hide {
    position: absolute;
    z-index: 0;
    left: -9000px;
}

.spacing-section-image {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.tooltip {
    font-size: 1.4rem;
}

ul.inline-list {
    padding-left: 0;
    list-style: none;
}

ul.inline-list li {
    padding: 10px;
    display: inline-block;
}

ul.inline-list li::before {
    display: none;
}

ul.inline-list li a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
}

ul.inline-list li a:hover {
    color: rgba(0, 0, 0, 1);
}

ul.inline-list li a::after {
    content: " ";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #212121;
    transition: width 0.2s ease;
}

ul.inline-list li a:hover::after,
ul.inline-list li a.filter-active::after {
    width: 100%;
    left: 0;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1285px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1570px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 0;
        padding-right: 0
    }

    .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .container-fluid,
    .container-fluid.cabecalho .container {
        padding-left: 0;
        padding-right: 0
    }

    .container {
        padding-left: 15px;
        padding-right: 15px
    }

    .navbar-header {
        margin-left: 0px !important;
        margin-right: 0px !important
    }
}

@media (min-width: 1441px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1350px) AND (max-width:1440px) {
    .container {
        max-width: 1250px;
    }
}

@media (min-width: 769px) AND (max-width:991px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width:768px) {
    .container {
        max-width: 100%;
    }
}

/* - */
.full-w-iframe iframe {
    width: 100% !important;
}

.mapa-iframe {
    background-color: #ffffff;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 25%;
}

@media (max-width: 768px) {
    .mapa-iframe {
        padding-top: 85%;
    }
}

.mapa-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* - */
.btn {
    cursor: pointer;
    text-decoration: none !important;
    border-radius: var(--border-radius-geral);
}

@media (max-width: 768px) {
    .btn {
        white-space: normal;
    }
}

/* ----------- ANIMACAO ----------- */
.left-animation {
    opacity: 0;
    transition: 1s;
    transform: translate(-200%)
}

.left-animation[data-scroll="in"] {
    opacity: 1;
    transform: translate(0)
}

.left-animation-after {
    opacity: 0;
    transition-duration: 1s;
    transition-delay: 1s;
    transform: translate(-200%)
}

.left-animation-after[data-scroll="in"] {
    opacity: 1;
    transform: translate(0)
}

.fade,
.mapa-iframe iframe,
.video-iframe iframe {
    opacity: 0;
    transition: 1.5s
}

.tooltip.fade {
    transition: none
}

.fade[data-scroll="in"],
.mapa-iframe[data-scroll="in"] iframe,
.video-iframe[data-scroll="in"] iframe {
    opacity: 1
}

.top-c {
    opacity: 0;
    transform: translate(200%);
    transition: 1s
}

.top-c[data-scroll="in"] {
    opacity: 1;
    transform: translate(0)
}

/* ----------- ANIMACAO ----------- */

/* ----------- CABECALHO ----------- */
header.cabecalho {
    --height-menu: 97px;
    --width-logo: 120px;
    --height-menu-mobile: 110px;
    --width-logo-mobile: 81px;
    --color-menu: var(--color-Dark-Blue);
    background-color: transparent;
    min-height: var(--height-menu);
    width: 100%;
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .30s ease-in;
    -ms-transition: all .30s ease-in;
    -moz-transition: all .30s ease-in;
    -o-transition: all .30s ease-in;
    transition: all .30s ease-in;
}

.cabecalho-fixed header.cabecalho {
    background-color: #fff;
}

body {
    padding-top: var(--scroll-padding);
}

header.cabecalho .menu-geral .navbar-nav .nav-item.icon {
    position: relative;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown {
    position: relative;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper {
    padding-top: 1.5rem;
    position: absolute;
    top: 50%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 600;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper.open {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper .search-inner {
    background-color: #F7F7F7;
    z-index: 1;
    padding: 2rem 2rem;
    width: 315px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper .search-inner form {
    position: relative;
    text-align: center;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper .search-inner form input[type="text"] {
    border: 1px solid rgba(131, 131, 131, 0.2);
    background-color: #fff;
    box-shadow: none;
    border-right: 0;
    max-width: 185px;
    color: #7C7C7C;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper .search-inner form button[type="submit"] {
    margin-left: -3px;
    background-color: var(--cor-website-1);
    color: #ffffff;
    border-color: var(--cor-website-1);
}

header.cabecalho .menu-geral .navbar-nav .nav-item.search-dropdown .search-wrapper .search-inner form button[type="submit"]:hover {
    opacity: 0.8;
}

header.cabecalho .shop-section-menu {
    --padding-bts: 0.5rem 4rem;
    display: flex;
    align-items: center;
}

header.cabecalho .shop-section-menu>div {
    margin-right: 1rem;
}

header.cabecalho .shop-section-menu>div:last-child {
    margin-right: 0;
}

header.cabecalho .shop-section-menu .btn-menu {
    background-color: var(--cor-website-1);
    color: #fff;
    padding: var(--padding-bts);
    text-transform: uppercase;
    border: 1px solid transparent;
}

header.cabecalho .shop-section-menu .btn-menu:hover {
    --percentage: 25;
    --opacity: calc(var(--percentage)* 0.01);
    background: linear-gradient(to top, rgba(0, 0, 0, calc(25 * 0.01)), rgba(0, 0, 0, calc(25 * 0.01))) currentColor;
}

header.cabecalho .shop-section-menu .btn-card {
    background-color: transparent;
    border: 1px solid var(--color-menu);
    color: var(--color-menu);
    padding: 0.5rem 1.5rem;
}

header.cabecalho .shop-section-menu .btn-card:hover {
    background-color: var(--color-menu);
    color: #fff;
}

header.cabecalho .shop-section-menu .pesquisa-menu {}

header.cabecalho .shop-section-menu .pesquisa-menu input[type="text"] {
    padding: 0.5rem 1.5rem;
    border-color: var(--color-menu);
    margin-right: 0.3rem;
    border-radius: var(--border-radius-geral);
    min-width: 20rem;
}

header.cabecalho .shop-section-menu .pesquisa-menu button[type="submit"] {
    background-color: var(--color-menu);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 0.5rem 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.cabecalho .navbar .box-element-menu {
    background-color: #fff;
    border-radius: 50px;
    padding: 18px 17px;
}

header.cabecalho .navbar {
    /* max-width: 80%; */
}

@media (min-width: 992px) AND (max-width: 1600px) {
    header.cabecalho .navbar {
        /* max-width: 100%; */
    }
}

/* - */
header.cabecalho .navbar-brand {
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    header.cabecalho .navbar-brand figure {
        text-align: center;
        margin: 0;
        /* padding: 2.15rem 0; */
    }
    header.cabecalho .navbar,
    header.cabecalho .navbar .box-element-menu {
        height: 62px;
    }
}
@media (max-width: 991px) {

    header.cabecalho .navbar-brand figure {
        margin: 0;
        padding: 0;
    }

    header.cabecalho .lang {
        position: absolute;
        right: calc(62px + 22px);
    }

    header.cabecalho .navbar .box-element-menu {
        padding: 1.8rem 1.7rem;
        padding: 1.2rem 1.6rem;
    }
}

header.cabecalho .navbar-brand figcaption {
    display: none;
}

/* - */
header.cabecalho .navbar-toggler {
    border-radius: 0;
    width: var(--height-menu-mobile);
    height: var(--height-menu-mobile);
    width: auto;
    height: auto;
    padding: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 10px;
}

header.cabecalho .navbar-toggler i.icon {
    display: block;
    width: 62px;
    height: 62px;
    background-image: url(../images/icon-menu-hamburger.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

header.cabecalho .navbar-toggler[aria-expanded="true"] i.icon {
    background-image: url(../images/icon-menu-hamburger-close.svg);
}

header.cabecalho .navbar-toggler span {
    display: block;
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    left: 0;
    opacity: 1
}

header.cabecalho .navbar-toggler.collapsed {
    /* background-color: transparent; */
}

header.cabecalho .navbar-toggler.collapsed span {
    background-color: var(--color-menu);
}

header.cabecalho .navbar-toggler {
    background-color: rgba(var(--cor1-rgb), 1);
    border: 0px;
    border-radius: 0;
}

header.cabecalho .navbar-toggler span {
    background-color: var(--color-menu);
}

header.cabecalho .navbar-toggler span:nth-child(1),
header.cabecalho .navbar-toggler span:nth-child(3) {
    -webkit-transition: transform .35s ease-in-out;
    -moz-transition: transform .35s ease-in-out;
    -o-transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out
}

header.cabecalho .navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 22px;
    top: 30px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: .9
}

header.cabecalho .navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent
}

header.cabecalho .navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 22px;
    top: 30px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: .9
}

/* - */
header.cabecalho .menu-geral .navbar-nav .nav-item.active {}

header.cabecalho .menu-geral .navbar-nav .nav-link {}

header.cabecalho .menu-geral .navbar-nav .nav-item.icon .nav-link .badge-cart {
    padding: 0;
    margin-left: 0;
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--cor-website-1);
    position: absolute;
    top: -2px;
    left: 19px;
}

@media (min-width: 992px) {
    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home {
        padding: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link {
        background-image: url(../images/icon-home.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        font-size: 0;
        line-height: 0;
        text-indent: -9000rem;
        vertical-align: middle;
        width: 1.8rem;
        height: 1.5rem;
        margin: 0 1.55rem;
        padding: 0;
        display: inline-block;
        position: relative;
        z-index: 0;
        top: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link:hover {
        top: -4px;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link:active {
        opacity: 0.8;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link:hover {
        -webkit-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -o-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }

}

header.cabecalho .navbar-brand img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .dropdown-toggle {
    display: none;
    /* font-size: 1.2rem; */
}

/* header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: none;
} */

header.cabecalho .container-menu-geral .links-info-v2 svg path,
header.cabecalho .container-menu-geral .links-info svg path,
main.seccao-conteudo .conteudos .links-info svg path {
    fill: var(--color-Deep-blue);
}

@media (min-width: 992px) {
    header.cabecalho .navbar-brand {
        /* width: var(--width-logo); */
        /* border: 2px solid transparent; */
        padding: 10px 6px !important;
    }

    header.cabecalho .navbar-brand:hover {
        box-shadow: 0px 4px 44px rgba(0, 74, 173, 0.2);
    }

    header.cabecalho .navbar-brand:focus {
        /* border: 2px solid var(--color-Ultra-Bright-Purple); */
        outline: 2px solid var(--color-Ultra-Bright-Purple);
    }

    header.cabecalho .menu-geral {
        min-height: 4.6rem;
        margin: 0;
    }

    header.cabecalho .menu-geral .navbar-nav {}

    header.cabecalho .menu-geral .navbar-divide-logo {
        margin: 0 calc(var(--width-logo) / 2);
        width: var(--width-logo);
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link {
        margin: 0 1rem;
        padding: 0;
        border-radius: 1.5rem;
        position: relative;
        z-index: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link {
        display: inline-block;
        position: relative;
        z-index: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon .nav-link {
        margin: 0 0.3rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:hover .nav-link:after,
    header.cabecalho .menu-geral .navbar-nav .nav-item.active .nav-link:after {
        height: 2.2rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item .nav-link:after,
    header.cabecalho .menu-geral .navbar-nav .nav-item:hover .nav-link:after {
        -webkit-transition: all .15s ease;
        -ms-transition: all .15s ease;
        -moz-transition: all .15s ease;
        -o-transition: all .15s ease;
        transition: all .15s ease;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item,
    header.cabecalho .menu-geral .navbar-nav .dropdown.active.nav-item:after,
    header.cabecalho .menu-geral .navbar-nav .nav-item.active:after,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        font-size: 16px;
        line-height: normal;
        /* text-transform: uppercase; */
        font-weight: 500;
        color: var(--color-menu);
        border: 2px solid transparent;
        border-radius: unset;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-align: center;
        align-items: center;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .nav-link::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: currentColor;
        font-size: 1.2rem;
        right: -10px;
        position: absolute;
        top: 50%;
        margin-top: -6px;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:hover>.nav-link,
    header.cabecalho .menu-geral .navbar-nav .active .nav-link,
    header.cabecalho .menu-geral .navbar-nav .dropdown.active .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown.active .nav-link::after,
    header.cabecalho .menu-geral .navbar-nav .nav-link:hover {
        color: var(--color-Bright-Blue);
        text-decoration: underline;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:active>.nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-link:active {
        color: var(--color-Deep-blue);
        text-decoration: underline;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:focus>.nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-link:focus {
        color: var(--color-menu);
        text-decoration: none;
        border: 2px solid var(--color-Ultra-Bright-Purple);
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item>.nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .navbar-nav .dropdown .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item:hover>.nav-link,
    header.cabecalho .menu-geral .navbar-nav .active .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-link:hover,
    header.cabecalho .menu-geral .navbar-nav .dropdown.active .nav-link {
        -webkit-transition: all .15s ease-in;
        -ms-transition: all .15s ease-in;
        -moz-transition: all .15s ease-in;
        -o-transition: all .15s ease-in;
        transition: all .15s ease-in;
    }

    /* - */

    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* ----- */
    header.cabecalho .menu-geral .dropdown-menu {
        -webkit-transition: all 0.25s ease 0.1s;
        -moz-transition: all 0.25s ease 0.1s;
        -o-transition: all 0.25s ease 0.1s;
        transition: all 0.25s ease 0.1s;
    }

    header.cabecalho .menu-geral .dropdown-menu {
        background-color: #fff;
        border: 0;
        border-radius: 0.25rem;
        min-width: 24rem;
        margin: 0;
        padding: 1rem 1rem;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        color: #3C3C3C;
        border-radius: 1.5rem;
        padding: 0.75rem 1.5rem;
        background-color: unset;
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:focus,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:hover,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item.active {
        /* background-color: rgb(var(--cor4-rgb)); */
        color: var(--cor-website-1);
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:hover {
        margin-left: 0.5rem;
    }

}

@media (min-width: 1200px) AND (max-width:1439px) {

    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item,
    header.cabecalho .menu-geral .navbar-nav .dropdown.active.nav-item:after,
    header.cabecalho .menu-geral .navbar-nav .nav-item.active:after,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        /* font-size: 1.4rem; */
    }
}

header.cabecalho .menu-geral .navbar-nav .nav-btn .btn {
    background-color: #000000;
    color: #ae9960;
    font-size: 1.55rem;
    line-height: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0 5rem;
    padding: 1.75rem 2rem;
    border-radius: 1rem;
}

header.cabecalho .menu-geral .navbar-nav .nav-btn .btn:hover {
    background-color: #ae9960;
    color: #000000;
}

header.cabecalho .menu-geral .navbar-nav .nav-btn .btn:after {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-size: 1.9rem;
    vertical-align: top;
    margin: -0.1rem 0 0 0.75rem;
    display: inline-block;
}

body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .nav-btn .btn,
body.paginas header.cabecalho .menu-geral .navbar-nav .nav-btn .btn {
    font-size: 1.3rem;
    line-height: 1.3rem;
    margin: 0 0 0 3rem;
    padding: 1.25rem 1.5rem;
}

@media (max-width: 768px) {
    header.cabecalho .navbar-brand figcaption {
        font-size: 2.5rem;
        line-height: 3rem;
        top: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-btn {
        height: var(--height-menu-mobile);
        margin: 0;
        position: fixed;
        z-index: 0;
        top: 0;
        right: 80px;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        display: -ms-flexbox;
        display: flex;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-btn .btn {
        font-size: 1.3rem;
        line-height: 1.3rem;
        margin: auto !important;
        padding: 1.25rem 1.5rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-btn .btn:active {
        background-color: #ae9960;
        color: #000000;
    }
}

@media (min-width: 1200px) AND (max-width:1439px) {

    /* header.cabecalho .navbar-brand img,
    body.cabecalho-fixed header.cabecalho .navbar-brand img {
        width: auto;
        height: 4rem;
    } */
}

@media (min-width: 992px) AND (max-width:1200px) {
    header.cabecalho .navbar-brand {}

    /* header.cabecalho .navbar-brand img {
        width: auto;
        height: 4rem;
    } */

    header.cabecalho .menu-geral {
        /* margin:auto 0 -0.7rem 0; */
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item,
    header.cabecalho .menu-geral .navbar-nav .dropdown.active.nav-item:after,
    header.cabecalho .menu-geral .navbar-nav .nav-item.active:after,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        /* font-size: 1.3rem; */
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:after {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    header.cabecalho {
        min-height: var(--height-menu-mobile);
        display: flex;
        align-items: center;
    }

    header.cabecalho .menu-geral {
        height: 0;
        overflow: hidden;
        display: block;
    }

    /* header.cabecalho .menu-geral.collapse.show {
        height: auto;
        display: block !important;
    } */
}

@media (min-width: 576px) AND (max-width: 991px) {
    /* header.cabecalho .navbar-brand img {
        height: 3.5rem;
    } */
}

/* - */
header.cabecalho .redesociais {}

/* - */
header.cabecalho .lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 17px;
}

header.cabecalho .lang a {
    color: var(--color-Dark-Gray);
    font-size: 16px;
    text-decoration: none;
}

header.cabecalho .lang a.active {
    color: var(--color-Dark-Blue);
    font-weight: 600;
}

header.cabecalho .lang a:hover {
    color: var(--color-Cyan);
}


@media (max-width: 991px) {
    header.cabecalho .menu-geral {
        -webkit-transition: all .20s ease-in;
        -ms-transition: all .20s ease-in;
        -moz-transition: all .20s ease-in;
        -o-transition: all .20s ease-in;
        transition: all .20s ease-in;
        display: none;
        display: block !important;
        background-color: var(--color-Ultra-Light-Blue);
        position: fixed;
        width: 100%;
        /* height: 100%; */
        height: 0;
        inset: 0;
        padding-top: var(--height-menu-mobile);
        top: calc(var(--height-menu-mobile) * -1);
        overflow-y: auto;
        text-align: center;
    }

    header.cabecalho .menu-geral.collapsing,
    header.cabecalho .menu-geral.show {
        display: block;
        height: 100%;
        top: 0;
    }

    header.cabecalho .menu-geral .container-menu-geral {
        max-width: 350px;
        margin: auto;
    }

    header.cabecalho .menu-geral .navbar-nav {
        background-color: transparent;
        /* overflow-y: auto;
        height: calc(100vh - var(--height-menu-mobile));
        text-align: center; */
    }

    header.cabecalho .navbar {
        padding: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        font-size: 16px;
        font-weight: 500;
        color: var(--color-Dark-Blue);
        /* text-transform: uppercase; */
        margin: 0;
        padding: 1rem 1rem;
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        font-size: 1.4rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .dropdown-toggle {
        color: #ffffff;
        text-align: center;
        font-size: 1.8rem;
        line-height: 5.5rem;
        width: var(--height-menu-mobile);
        height: 5.2rem;
        display: block;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        cursor: pointer;
        border-left: 1px solid rgba(92, 92, 92, 0.23);
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item:hover .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .dropdown-toggle:hover,
    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded="true"] {
        color: var(--color-Bright-Blue);
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:hover,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:active,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item.active,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:focus {
        background-color: var(--color-menu);
        color: #000000;
    }

    header.cabecalho .menu-geral .dropdown-menu {
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: var(--cor-website-1);
        text-indent: 2.5rem;
        margin-top: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-user,
    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-cart {
        text-align: center;
        width: calc(var(--height-menu-mobile) / 2);
        height: var(--height-menu-mobile);
        margin: 0;
        display: flex;
        position: fixed;
        z-index: 0;
        top: 0;
        right: 0;
        align-items: center;
        justify-content: center;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-user .nav-link,
    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-cart .nav-link {
        border: unset;
        background-color: transparent;
        color: var(--color-menu);
        font-size: 2rem;
        padding: 1.4rem 1.5rem;
        position: relative;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-user {
        right: 45px;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon.icon-cart {
        right: 15px;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.icon .nav-link .badge-cart {
        top: 0px;
        left: 25px;
    }

    header.cabecalho .menu-geral .searchform_mobile {
        position: relative;
        padding: 1rem;
        border-bottom: 2px solid rgba(92, 92, 92, 0.43);
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"] {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        border: 1px solid rgba(208, 208, 208, 0.09);
        padding: 1.4rem 5rem 1.4rem 1.8rem;
        height: 5rem;
        font-size: 1.6rem;
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"]::-webkit-input-placeholder {
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"]::-moz-placeholder {
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"]:-ms-input-placeholder {
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"]::-ms-input-placeholder {
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile input[type="text"]::placeholder {
        color: #fff;
    }

    header.cabecalho .menu-geral .searchform_mobile button[type="submit"] {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        border: none;
        background-color: transparent;
        padding: 0;
        width: 5rem;
        height: 5rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
    }
}

@media (min-width: 1200px) AND (max-width:1440px) {}

@media (min-width: 992px) AND (max-width:1200px) {
    .titulo-conteudo {
        font-size: 3.8rem;
    }
}

@media (min-width: 769px) AND (max-width: 991px) {}

@media (max-width: 991px) {
    .titulo-conteudo {
        font-size: 3rem;
    }

    header.cabecalho .navbar {
        max-width: 100%;
        height: var(--height-menu-mobile);
        height: 62px;
        padding: 0;
    }

    header.cabecalho .navbar-brand {
        width: var(--width-logo-mobile);
        width: auto;
        margin: 0 10px;
        /* margin: 0 auto;
        position: absolute;
        z-index: 10;
        left: 0;
        right: 0; */
    }

    header.cabecalho .navbar-brand img {
        width: var(--width-logo-mobile);
    }

    header.cabecalho .redesociais {
        background-color: transparent;
        margin: 0;
        position: absolute;
        z-index: 1;
        right: 85px;
    }

    header.cabecalho .redesociais a {
        background-size: cover;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0 0 1.5rem;
    }
}

@media (min-width: 375px) AND (max-width:425px) {
    /* header.cabecalho .navbar-brand img {
        width: auto;
        height: 55px;
    } */

    header.cabecalho .redesociais {
        top: 25px;
    }

    header.cabecalho .redesociais a {
        background-size: cover;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0 0 1.5rem;
    }
}

@media (max-width: 375px) {
    /* header.cabecalho .navbar-brand img {
        width: auto;
        height: 50px;
    } */

    header.cabecalho .redesociais {
        top: 26px;
        right: 80px;
    }

    header.cabecalho .redesociais a {
        background-size: contain;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0 0 1.5rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-btn .btn {
        font-size: 1.2rem;
        line-height: 1.2rem;
        margin: auto;
        padding: 1.25rem 1rem;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-btn .btn:after {
        font-size: 1.3rem;
        margin: 0rem 0 0 0.75rem;
    }

    header.cabecalho .redesociais {
        display: none;
    }
}

@media (min-width: 768px) {
    body .progresso {
        background-color: transparent;
        width: 0;
        height: 2px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border: 0px solid transparent;
    }

    body.cabecalho-fixed .progresso {
        background: linear-gradient(45deg, var(--cor-website-4), var(--cor-website-5), var(--cor-website-3));
    }
}

/* ----------- CABECALHO ----------- */

.formulario.needs-validation .custom-select.is-invalid,
.formulario.needs-validation .form-control.is-invalid,
.formulario.needs-validation.was-validated .custom-select:invalid,
.formulario.needs-validation.was-validated .form-control:invalid,
.formulario.needs-validation.was-validated .form-control.form-control-checkbox [type="checkbox"]:invalid span:before,
.formulario.was-validated.was-validated .form-control-checkbox [type="checkbox"]:invalid+span:before {
    border-color: #dc3545;
}

.formulario.needs-validation.was-validated .form-control:not(.form-control-checkbox),
.formulario.was-validated.was-validated .form-control-checkbox [type="checkbox"]:invalid+span:before {
    border-width: 1px !important;
    border-style: solid !important;
}

.parallax-container {
    overflow: hidden;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax-container .parallax-window {
    overflow: hidden;
    height: 100%;
}


.table-responsive-container td,
.table-responsive-container th {
    /*border: 0px !important;*/
    padding: 0px !important;
}

.table-responsive-container .table {
    margin: 0px;
}

.table-responsive2-data-label {
    background-color: #fff;
}

.table-responsive1-data-label td,
.table-responsive1-data-label th,
.table-responsive2-data-label td,
.table-responsive2-data-label th {
    border-top: 1px solid #e9ecef !important;
}

.table-responsive1-data-label td,
.table-responsive1-data-label th {
    padding: 0.75rem !important;
}

.table-responsive1-data-label th,
.table-responsive2-data-label th {
    font-size: 12px;
    font-weight: 600;
}

.table-responsive1-data-label tr [data-label],
.table-responsive2-data-label tr [data-label] {
    border-top: 1px solid #ddd !important;
}

.table-responsive2-data-label [data-label],
.table-responsive-container .table-responsive1-data-label [data-label] {
    text-transform: none;
    vertical-align: middle;
}

.table-responsive-container .table-responsive1-data-label [data-label-bottom] {
    text-transform: none;
}

@media (min-width: 992px) {

    .table-responsive1-data-label .hide-md,
    .table-responsive2-data-label .hide-md {
        display: none;
    }

    .table-responsive-container .table-responsive1-data-label [data-label] {
        height: 65px;
    }

    .table-responsive2-data-label {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) AND (max-width: 1199px) {
    .table-responsive-container .table-responsive1-data-label th {
        vertical-align: middle;
        height: 65px;
    }

    .table-responsive-container .table-responsive1-data-label [data-label] {
        height: 85px;
    }
}

@media (min-width: 769px) AND (max-width: 991px) {

    .table-responsive-container,
    .table-responsive-container .rp-tbody,
    .table-responsive-container .rp-tr,
    .table-responsive-container .rp-td {
        display: block;
    }
}

@media (min-width: 769px) {

    .table-responsive2-data-label td,
    .table-responsive2-data-label th {
        padding: 0.75rem !important;
    }
}

@media (max-width: 768px) {

    .table-responsive2-data-label [data-label],
    .table-responsive-container .table-responsive1-data-label [data-label] {
        font-size: 12px;
    }

    .table-responsive2-data-label td,
    .table-responsive2-data-label th {
        padding: 0.75rem !important;
    }

    .table-responsive2-data-label tr td,
    .table-responsive2-data-label th {
        text-align: left;
    }

    .table-responsive-container,
    .table-responsive-container .rp-tbody,
    .table-responsive-container .rp-tr,
    .table-responsive-container .rp-td {
        text-align: center;
        display: block;
    }

    .table.table-responsive2-data-label {
        margin-bottom: 30px;
    }

    .table.table-responsive2-data-label thead {
        display: none;
    }

    .table.table-responsive2-data-label tr {
        margin-bottom: 0px;
    }

    .table.table-responsive2-data-label td {
        vertical-align: top;
        padding: .75rem;
    }

    .table.table-responsive2-data-label tr,
    .table.table-responsive2-data-label td {
        background-color: transparent;
        width: 100%;
        max-width: 100%;
        display: table;
    }

    .table.table-responsive2-data-label td:before {
        content: attr(data-label);
        font-weight: bold;
        text-indent: 0px;
        width: 35%;
        display: table-cell;
        color: #000;
        padding: 5px 10px;
        font-size: 12px;
    }

    .table.table-responsive2-data-label td.data-label-bottom:before {
        content: '';
    }

    .table.table-responsive2-data-label td.data-label-bottom:after {
        content: attr(data-label);
        font-weight: bold;
        text-indent: 0px;
        width: 100%;
        display: block;
        color: #000;
        padding: 5px 0px;
    }
}

hr.separador {
    border-color: #fff;
    opacity: 30%;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.descricao p:last-child {
    margin-bottom: 0;
}

/* ----------- RODAPE ----------- */
footer.rodape {
    --color-geral-rodape: #fff;
    background-color: var(--color-Deep-blue);
    color: var(--color-geral-rodape);
    /* font-size: 1.6rem; */
    font-size: 16px;
}

footer.rodape .footer-padding {
    padding-top: 10rem;
    padding-bottom: 4rem;
}

footer.rodape .logo-footer {
    margin-bottom: 8.5rem;
}

footer.rodape .seccao-contactos {
    margin-bottom: 5rem;
}

footer.rodape .seccao-contactos p {
    margin-bottom: 0.5rem;
}

footer.rodape .seccao-contactos .numero {
    font-size: 2rem;
}

footer.rodape a {
    color: inherit;
}

footer.rodape a:hover {
    color: var(--color-Green-focus);
}
footer.rodape a:active {
    color: var(--color-Cyan);
}
footer.rodape a:focus {
    outline: 1px solid #fff;
}

footer.rodape .tit {
    color: #fff;
    font-weight: normal;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

footer.rodape .sub-menu {
    list-style: none;
    line-height: 1;
    margin: 0px;
    padding: 0px;
}

footer.rodape .sub-menu li {
    margin-bottom: 1.5rem;
}

footer.rodape .sub-menu li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 0 1rem 0 0.5rem;
    display: inline-block;
    font-size: 1rem;
}

footer.rodape .sub-menu li a:hover {
    color: #fff;
}

footer.rodape .footer-form {
    /* margin-bottom: 3rem; */
    font-size: 1.4rem;
}

footer.rodape .footer-form .subscribe_form .newsletter-input {
    width: 100%;
    height: 4.3rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    /* color: var(--color-geral-rodape); */
    border: 1px solid #fff;
    outline: none;
}

footer.rodape .footer-form .subscribe_form .newsletter-submit {
    position: absolute;
    top: 0px;
    right: 0;
    border: 0;
    cursor: pointer;
    padding: 1.4rem 2.2rem;
    background: #fff;
    font-size: inherit;
    line-height: 1;
    outline: none;
    color: #000;
}

footer.rodape .footer-form .subscribe_form .newsletter-submit:hover {
    background: var(--color-geral-rodape);;
}

footer.rodape .redesociais {
    /* margin-bottom: 3.8rem; */
    margin-left: -6px;
    margin-right: -6px;
    display: unset;
}

footer.rodape .redesociais .social-icon {
    margin: 0 6px;
}

footer.rodape .redesociais .social-icon svg path {
    fill: #fff;
}
footer.rodape .redesociais .social-icon:hover svg path {
    fill: var(--color-Green-focus);
}
footer.rodape .redesociais .social-icon:active svg path {
    fill: var(--color-Cyan);
}
footer.rodape .redesociais .social-icon:focus svg {
    outline: 1px solid #fff;
}
footer.rodape .redesociais .social-icon:focus svg path {
    fill: #fff;
}

@media (max-width: 992px) {
    footer.rodape .footer-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    footer.rodape .tit {
        margin-bottom: 2rem;
        margin-top: 3.5rem;
    }

    footer.rodape .logo-footer {
        margin-bottom: 3rem;
    }
}

.copyright-section {
    font-size: 1.3rem;
    color: #fff;
    background-color: #313131;
    padding: 2rem 0;
}

.copyright-section a {
    color: inherit;
}

.links-menu {
    list-style: none;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.links-menu li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .links-menu.inline li {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 4rem;
    }
}

@media (max-width: 991px) {
    .links-menu.inline li {
        margin-bottom: 3rem;
    }
}

.links-menu li:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

ul.links-info {
    list-style: none;
    padding: 0px;
}

ul.links-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

ul.links-info li .icon {
    display: inline-block;
    margin-right: 1rem;
}

ul.links-info li:last-child {
    margin-bottom: 0;
}


ul.links-info-v2 {
    list-style: none;
    padding: 0px;
}

ul.links-info-v2 li {
    margin-bottom: 1rem;
}

ul.links-info-v2 li div {
    display: inline-block;
}

ul.links-info-v2 li:last-child {
    margin-bottom: 0;
}
/* ----- */

.container-partilhar {}

.container-partilhar .partilhar-titulo {
    font-weight: 600;
    color: var(--color-Dark-Blue);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .container-partilhar {
        margin: 50px 0;
    }
}

.redesociais {
    margin-left: -6px;
    margin-right: -6px;
    display: flex;
    align-items: center;
}

.redesociais .social-icon {
    /* background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    text-indent: -9000rem; */
    width: 24px;
    height: 24px;
    margin: 0 6px;
    display: inline-block;
    position: relative;
    z-index: 0;
    top: 0;
    opacity: 1;
}

.redesociais .social-icon,
.redesociais .social-icon svg path {
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.redesociais .social-icon svg path {
    fill: var(--color-Deep-blue);
}
.redesociais .social-icon:hover svg path {
    fill: var(--color-Dark-Blue);
}
.redesociais .social-icon:active svg path {
    fill: var(--color-Bright-Blue);
}
.redesociais .social-icon:focus svg {
    outline: 1px solid var(--color-Ultra-Bright-Purple);
}
.redesociais .social-icon:focus svg path {
    fill: var(--color-Dark-Blue);
}

/* ----- */
@media (min-width: 1200px) AND (max-width:1440px) {
    .titulo-seccao-geral {}

    .titulo-seccao-geral.bigger {}
}

@media (min-width: 992px) AND (max-width:1200px) {
    .titulo-seccao-geral {}

    .titulo-seccao-geral.bigger {}
}

@media (min-width: 769px) AND (max-width:992px) {

    html,
    body {
        font-size: 17px;
        line-height: 32px;
    }

    .titulo-seccao-geral {
        font-size: 30px;
        line-height: 37px;
    }

    .titulo-seccao-geral.bigger {
        font-size: 37px;
        line-height: 52px;
    }
    .subtitulo-conteudo {
        font-size: 27px;
        line-height: normal;
    }
}

@media (max-width: 768px) {

    html,
    body {
        font-size: 17px;
        line-height: 32px;
    }

    .titulo-seccao-geral {
        font-size: 30px;
        line-height: 37px;
    }

    .titulo-seccao-geral.bigger {
        font-size: 37px;
        line-height: 52px;
    }
}

@media (max-width: 425px) {}

/* - */
.manutencao {
    background-color: rgb(var(--cor8-rgb));
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 0;
}

.manutencao,
.manutencao a,
.manutencao strong {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
}

.manutencao a {
    text-decoration: none;
}

.manutencao p {
    margin: 0;
}

.manutencao .livro {
    width: auto;
    height: 4.5rem;
}

/* - */
.scrollup {
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #000 !important;
    z-index: 350;
    border: 1px solid black;
    border-radius: 50%;
    text-decoration: none;
    background-color: white;
    position: fixed;
    bottom: 75px;
    right: 40px;
    visibility: hidden;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-scrollup.active .scrollup {
    /* transform: scaleX(1) scaleY(1); */
    opacity: 1;
    visibility: visible;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.c-scrollup .scrollup,
.c-scrollup.active .scrollup {
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 992px) {
    .scrollup {
        height: 35px;
        width: 35px;
        bottom: 70px;
        right: 20px;
    }
}

.scrollup:hover,
.scrollup:focus {
    border-color: var(--cor-website-1);
    background-color: var(--cor-website-1);
    color: #fff !important;
    transform: scale(0.91);
    -moz-transform: scale(0.91);
    -o-transform: scale(0.91);
    -webkit-transform: scale(0.91);
}

/* - */
.cookies {
    color: #000000;
    font-size: 1.3rem;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1%;
    z-index: 99;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.cookies .container .row {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .15);
    margin: 0px;
    padding: 1rem 0px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookies .cookie-mensagem {
    -ms-flex-align: center !important;
    align-items: center !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.cookies .cookie-mensagem,
.cookies .cookie-bts {}

.cookies .cookie-mensagem a {
    color: var(--cor-website-1);
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .cookies {
        width: 65%;
    }
}

@media (min-width: 769px) AND (max-width:1200px) {
    .cookies {
        width: 95%;
    }
}

@media (min-width: 769px) {
    .cookies .cookie-bts {
        text-align: center;
        margin: auto;
    }
}

.cookies .cookie-bts .btn.btn-cookies {
    background-color: rgb(var(--cor-website-1-rgb));
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    border-radius: 2px !important;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.cookies .cookie-bts .btn-default {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    padding: 4px 10px
}

@media (max-width: 992px) {
    .cookies {
        font-size: 10px;
        line-height: normal;
        width: 98.5%;
        left: 0;
        right: 0;
        bottom: 1%;
        z-index: 9;
    }
}

@media (max-width: 768px) {
    .cookies {
        font-size: 10px;
        line-height: normal;
        width: 98.5%;
        left: 0;
        right: 0;
        bottom: 0.5rem;
        z-index: 8;
    }

    .cookies .container .row {
        padding: 5px 7px;
    }

    .cookies .cookie-bts {
        float: right;
        padding: 0;
    }

    .cookies .cookie-bts .btn.btn-cookies {
        font-size: 10px;
        margin-left: auto;
        padding: 7px 0px;
        width: 100%;
        max-width: 5rem;
        height: auto;
        display: block;
    }
}

/*ERROR 404 AND 500*/
.error_wc {
    /*font-family: nunito,sans-serif;*/
    max-width: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1;
}

.error_wc .emoji {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 140px;
    height: 140px;
    background-image: url(../images/emoji.png);
    background-size: cover;
}

.error_wc h1 {
    font-size: 65px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #151723;
    text-transform: uppercase;
}

.error_wc h2 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #151723;
}

.error_wc p {
    color: #999fa5;
    font-weight: 400;
}

.error_wc a {
    display: inline-block;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    color: #388dbc;
}

@media (max-width: 992px) {
    .error_wc {
        padding-left: 110px;
    }

    .error_wc .emoji {
        width: 90px;
        height: 90px;
    }
}

/*ERROR 404 AND 500*/


.pagina-conteudo .titulo,
.seccao-titulo {
    color: var(--cor-geral-site);
    font-size: 5rem;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 4rem 0;
    padding: 0;
}

.seccao-titulo-smaller {
    color: var(--cor-geral-site);
    font-size: 3rem;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.bg-Deep-blue {
    background-color: var(--color-Deep-blue);
}

/* NOVOS BLOCOS/ESTILOS */
.bg-cover {
    /* transform-origin: center;
    -webkit-transform-origin: center;
    background-size: cover; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.bg-contain {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.btn.btn-no-style {
    text-transform: uppercase;
    line-height: 1.7;
    font-size: 2rem;
    text-align: left;
    font-family: var(--font-titulos);
    font-weight: 400;
    font-style: normal;
    transition-duration: 0.25s;
    transition-property: opacity;
    color: rgb(var(--cor1-rgb));
    background-color: unset !important;
}

.btn.btn-no-style:hover,
.btn.btn-no-style:focus,
.btn.btn-no-style:active {
    opacity: 0.5;
    box-shadow: none;
}

.btn.btn-outline {
    text-transform: uppercase;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    height: auto;
    width: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4rem;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 1.4rem;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 2px;
    padding: 1.4rem 3rem;
    background-color: rgba(0, 0, 0, 0);
}

.btn.btn-outline:hover {
    color: var(--cor-website-1);
    background-color: rgb(255, 255, 255);
}

.linha-small {
    background-color: var(--cor-website-1);
    width: 165px;
    height: 1px;
    margin: 2rem 0 3.5rem 0;
}

/* ========== Página do Artigo ========== */
.descricoes-conteudo h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 20px;
}
.descricoes-conteudo h3 {
    font-weight: 600;
    font-size: 27px;
    line-height: 33px;
    margin-bottom: 20px;
}
/* ========== Página do Artigo ========== */


/* Preloader */
.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #f7f7f7;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    position: absolute;
    inset: 0;
    margin: auto;
}

.lds-ripple .lds-pos {
    position: absolute;
    border: 2px solid var(--cor-website-1);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
}

.lds-ripple .lds-pos:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    to {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

/* Preloader */

/* ==================MSG FORMS================== */
.swal-icon--error {
    border-color: #f27474;
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s;
}

.swal-icon--error__x-mark {
    position: relative;
    display: block;
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s;
}

.swal-icon--error__line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #f27474;
    display: block;
    top: 37px;
    border-radius: 2px;
}

.swal-icon--error__line--left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}

.swal-icon--error__line--right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}

@-webkit-keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

.swal-icon--warning {
    border-color: #f8bb86;
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate;
}

.swal-icon--warning__body {
    width: 5px;
    height: 47px;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
    position: absolute;
    left: 50%;
    background-color: #f8bb86;
}

.swal-icon--warning__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    bottom: -11px;
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

.swal-icon--success {
    border-color: #a5dc86;
}

.swal-icon--success:after,
.swal-icon--success:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal-icon--success:before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.swal-icon--success:after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px;
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.swal-icon--success__ring {
    width: 80px;
    height: 80px;
    border: 4px solid hsla(98, 55%, 69%, 1);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.swal-icon--success__hide-corners {
    width: 5px;
    height: 90px;
    background-color: #fff;
    padding: 1px;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal-icon--success__line {
    height: 5px;
    background-color: #a5dc86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.swal-icon--success__line--tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.swal-icon--success__line--long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.swal-icon--info {
    border-color: #c9dae1;
}

.swal-icon--info:before {
    width: 5px;
    height: 29px;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--info:after,
.swal-icon--info:before {
    content: "";
    position: absolute;
    left: 50%;
    background-color: #c9dae1;
}

.swal-icon--info:after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
}

.swal-icon {
    width: 80px;
    height: 80px;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    margin: 20px auto;
    overflow: hidden;
    background-color: #fff;
}

.swal-icon:first-child {
    margin-top: 32px;
}

.swal-icon--custom {
    width: auto;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
}

.swal-icon img {
    max-width: 100%;
    max-height: 100%;
}

.swal-title {
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: block;
    padding: 13px 16px;
    font-size: 27px;
    line-height: normal;
    text-align: center;
    margin-bottom: 0;
}

.swal-title:first-child {
    margin-top: 26px;
}

.swal-title:not(:first-child) {
    padding-bottom: 0;
}

.swal-title:not(:last-child) {
    margin-bottom: 13px;
}

.swal-text {
    font-size: 16px;
    position: relative;
    float: none;
    line-height: normal;
    vertical-align: top;
    text-align: left;
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.64);
    max-width: calc(100% - 20px);
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.swal-text:first-child {
    margin-top: 45px;
}

.swal-text:last-child {
    margin-bottom: 45px;
}

.swal-footer {
    text-align: right;
    padding-top: 13px;
    margin-top: 13px;
    padding: 13px 16px;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.swal-button-container {
    margin: 5px;
    display: inline-block;
    position: relative;
}

.swal-button {
    background-color: #7cd1f9;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.swal-button:not([disabled]):hover {
    background-color: #78cbf2;
}

.swal-button:active {
    background-color: #70bce0;
}

.swal-button:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(43, 114, 165, 0.29);
}

.swal-button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.swal-button::-moz-focus-inner {
    border: 0;
}

.swal-button--cancel {
    color: #555;
    background-color: #efefef;
}

.swal-button--cancel:not([disabled]):hover {
    background-color: #e8e8e8;
}

.swal-button--cancel:active {
    background-color: #d7d7d7;
}

.swal-button--cancel:focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(116, 136, 150, 0.29);
}

.swal-button--danger {
    background-color: #e64942;
}

.swal-button--danger:not([disabled]):hover {
    background-color: #df4740;
}

.swal-button--danger:active {
    background-color: #cf423b;
}

.swal-button--danger:focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(165, 43, 43, 0.29);
}

.swal-content {
    padding: 0 20px;
    margin-top: 20px;
    font-size: medium;
}

.swal-content:last-child {
    margin-bottom: 20px;
}

.swal-content__input,
.swal-content__textarea {
    -webkit-appearance: none;
    background-color: #fff;
    border: none;
    font-size: 14px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 10px 13px;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.swal-content__input:focus,
.swal-content__textarea:focus {
    outline: none;
    border-color: #6db8ff;
}

.swal-content__textarea {
    resize: vertical;
}

.swal-button--loading {
    color: transparent;
}

.swal-button--loading~.swal-button__loader {
    opacity: 1;
}

.swal-button__loader {
    position: absolute;
    height: auto;
    width: 43px;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    pointer-events: none;
    opacity: 0;
}

.swal-button__loader div {
    display: inline-block;
    float: none;
    vertical-align: baseline;
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    margin: 2px;
    opacity: 0.4;
    border-radius: 7px;
    background-color: hsla(0, 0%, 100%, 0.9);
    transition: background 0.2s;
    -webkit-animation: swal-loading-anim 1s infinite;
    animation: swal-loading-anim 1s infinite;
}

.swal-button__loader div:nth-child(3n + 2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.swal-button__loader div:nth-child(3n + 3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

@-webkit-keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

@keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

.swal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.swal-overlay:before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.swal-overlay--show-modal {
    opacity: 1;
    pointer-events: auto;
}

.swal-overlay--show-modal .swal-modal {
    opacity: 1;
    pointer-events: auto;
    box-sizing: border-box;
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
    will-change: transform;
}

.swal-modal {
    width: 478px;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    position: static;
    margin: 20px auto;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 10001;
    transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}

@media (max-width: 500px) {
    .swal-modal {
        width: calc(100% - 20px);
    }
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.msg_login {
    display: none;
}

.msg_login .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 70%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    -webkit-backdrop-filter: blur(6px);
    -moz-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.msg_login .center-content-midle-msg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    z-index: 9999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.msg_login .text-display {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 800;
}

.msg_login .msg_hide {
    display: none;
}

/* ==================MSG FORMS================== */

.loader-form-geral {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(230 230 230 / 90%);
    z-index: 9999999999;
}

.loader-form-geral .aviso {
    display: block;
    font-size: 3rem;
    line-height: 4rem;
    color: #000;
    font-weight: 600;
}

.loader-form-geral .loader {
    display: block;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 150px;
    height: 100px;
    background-image: url(../images/loader.svg);
}


/* ================ FILTERS ================ */
.filter-options-catalogo {
    list-style: none;
    line-height: 1;
    margin: 0;
    padding: 0;
    --size-checkbox-filters: 24px;
    --padding-box-filters: 7px;
    --padding-box-right-filters: calc(var(--padding-box-filters) + var(--size-checkbox-filters));
}
.filter-options-catalogo li {
    display: block;
    background-color: var(--color-Light-blue);
    color: var(--color-Dark-Blue);
    font-weight: 600;
    padding: var(--padding-box-filters);
    margin-bottom: 5px;
    padding-right: var(--padding-box-right-filters);
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}
.filter-options-catalogo li a {
    text-decoration: none;
    color: inherit;
}
.filter-options-catalogo li a:before {
    content: '';
    width: auto;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}
.filter-options-catalogo li:after {
    content: '';
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
    width: var(--size-checkbox-filters);
    height: var(--size-checkbox-filters);
    border: 1px solid var(--color-Dark-Gray);
    border-radius: 6px;
    margin: auto;
}

.filter-options-catalogo li:hover {
    color: var(--color-Deep-blue);
}

.filter-options-catalogo li:focus {
    outline: 2px solid var(--color-Ultra-Bright-Purple);
}

.filter-options-catalogo li.filter-active {
    color: var(--color-Deep-blue);
}
.filter-options-catalogo li.filter-active:after {
    background-color: var(--color-Deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/icon-check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.filter-options-catalogo li.filter-active:hover {
    color: var(--color-Dark-Blue);

}
.filter-options-catalogo li.filter-active:hover:after {
    background-color: var(--color-Dark-Blue);
}

@media (max-width: 991px) {
    .filter-options-catalogo {
        margin-bottom: 30px;
    }
    .filter-options-catalogo li {
        display: inline-block;
        margin-left: 10px;
        margin-bottom: 10px;
        min-width: calc(145px + var(--padding-box-right-filters));
    }
    .filter-options-catalogo li:last-child {
        margin-right: 0;
    }
}
/* ================ FILTERS ================ */

.caracteristicas-catalogo {

}

.caracteristicas-catalogo .box {
    border-top: 1px solid var(--color-Light-Gray);
    padding-top: 20px;
    padding-bottom: 20px;
}

.caracteristicas-catalogo .box .box-title {
    margin-bottom: 10px;
    color: var(--color-Deep-blue);
    font-weight: 600;
}

.caracteristicas-catalogo .box .box-description {}

.caracteristicas-catalogo .box .box-description p:last-child {
    margin-bottom: 0;
}

.caracteristicas-catalogo .box .text-content {
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.caracteristicas-catalogo .box .text-content.clamped {
    -webkit-line-clamp: 8;
}

.caracteristicas-catalogo .box .text-content.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}


/* =============== ClipboardBox Element =============== */
#ClipboardBox {
    visibility: hidden;
    color: #fff;
    background-color: #333;
    min-width: 220px;
    margin-left: -110px;
    border-radius: 2px;
    padding: 10px 16px;
    text-align: center;
    left: 50%;
    bottom: 30px;
    z-index: 1;
    position: fixed;
    border-radius: 15px;
    font-size: 16px;
}

#ClipboardBox.show {
    visibility: visible;
    -webkit-animation: fadein-box 0.5s, fadeout 0.5s 2.5s;
    animation: fadein-box 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein-box {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein-box {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}
/* =============== ClipboardBox Element =============== */