@import "carousel-fade.css";


:root {
    font-size: 62.5%;
    --height-menu: 9rem;
    --height-menu-mobile: 70px;
    --font-geral-1: "Quicksand", sans-serif;
    --font-geral-2: "Playfair Display", serif;
    --cor-geral-site-hex: #F20F90;
    --cor-geral-site-rgb: 242, 15, 144;
    --cor-geral-site-darker-hex: #926400;
    --cor-geral-site-darker-rgb: 146, 100, 0;
    --color-geral-gray-hex: #232323;
    --color-geral-gray-rgb: 35, 35, 35;
    --border-radius-geral: 0;
    --swiper-navigation-color: #000;

    --divider-border-width: 1px;
    --divider-pattern-repeat: repeat-x;
    --divider-pattern-size: auto;
    --divider-border-style: zigzag_tribal;
    --divider-color: #F5EFE8;
    --divider-pattern-height: 20px;
    --divider-pattern-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid meet' overflow='visible' height='100%' viewBox='0 0 120 26' fill='black' stroke='none'%3E%3Cpolygon points='0,14.4 0,21 11.5,12.4 21.3,20 30.4,11.1 40.3,20 51,12.4 60.6,20 69.6,11.1 79.3,20 90.1,12.4 99.6,20 109.7,11.1 120,21 120,14.4 109.7,5 99.6,13 90.1,5 79.3,14.5 71,5.7 60.6,12.4 51,5 40.3,14.5 31.1,5 21.3,13 11.5,5'/%3E%3C/svg%3E");

    /* Extra estilos cores */
    --cor-site-hex-1: #F20F90;
    --cor-site-rgb-1: 242, 15, 144;
    --cor-site-hex-2: #c7c7c7;
    --cor-site-rgb-2: 199, 199, 199;
    --cor-site-hex-3: #666;
    --cor-site-rgb-3: 102, 102, 102;
    --cor-site-hex-preto: #000000;
    --cor-site-rgb-preto: 0, 0, 0;
    --cor-site-hex-branco: #ffffff;
    --cor-site-rgb-branco: 255, 255, 255;
}

@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(--height-menu, 9.5rem);
}

html,
body {
    font-family: var(--font-geral-1);
    font-size: 1.6rem;
    color: #323232;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body .full-bg {
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1B1919;
    line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1,
h2,
h3,
h4,
h5,
h6,
.title,
table th,
fieldset legend,
table th,
ul.inline-list li a {
    font-family: var(--font-geral-2);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.2rem;
}

.font-fix-14 {
    font-size: 1.4rem !important;
}
.font-fix-18 {
    font-size: 1.8rem !important;
}

a {
    color: var(--cor-geral-site-hex);
}
a:hover {
    color: #121212;
}

.form-input-clone,
textarea,
select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"] {
    border: 1px solid rgba(129, 129, 129, 0.25);
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding: 0 1rem;
    transition: border-color .5s;
    box-shadow: none !important;
    border-radius: 0;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.6);
    transition: border-color .4s;
    box-shadow: none;
}

/* .btn:not(.no-border-r),
img:not(.no-border-r),
iframe:not(.no-border-r),
.border-radius-site {
    border-radius: var(--border-radius-geral) !important;
} */

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

.btn.btn-geral {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--cor-geral-site-hex);
    color: #fff;
    margin: 0;
    border: none;
    text-shadow: none;
    -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;
}

.btn.btn-geral:hover {
    background-color: #000;
    color: #fff;
}

.font-geral-1 {
    font-family: var(--font-geral-1) !important;
}
.font-geral-2 {
    font-family: var(--font-geral-2) !important;
}

p {
    margin-top: 0;
    margin-bottom: 2rem;
}

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

iframe {
    max-width: 100%;
}

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

.conteudos ul:not(.demo-gallery) {
    padding-left: 4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    list-style: none;
}

.conteudos ul:not(.demo-gallery)>li {
    position: relative;
}

.conteudos ul:not(.demo-gallery)>li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1rem;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: -2rem;
    color: var(--cor-geral-site-hex);
}

.color-site {
    color: var(--cor-geral-site-hex);
}

.color-site-darker {
    color: var(--cor-geral-site-darker-hex);
}

.bg-site {
    background-color: rgba(var(--cor-geral-site-rgb), 1) !important;
}

.bg-site-darker {
    background-color: rgba(var(--cor-geral-darker-rgb), 1) !important;
}

.bg-site-gray {
    background-color: rgba(var(--color-geral-gray-rgb), 1) !important;
}

.bg-site-fade-1 {
    background: rgba(var(--cor-geral-site-rgb), 1) !important;
    background: linear-gradient(to left, rgba(var(--cor-geral-site-rgb), 0.10) 0%, rgba(var(--cor-geral-site-rgb), 0.01) 100%) !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;
}

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

.quote-testemunho {
    font-size: 5rem;
    color: var(--cor-geral-site-hex);
}

.btn,
.button,
button,
.added_to_cart,
input[type="submit"] {
    display: inline-block;
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: 0px;
    border: 1px solid;
    -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;
    cursor: pointer;
}

.btn:not([class*="btn-"]),
.button:not([class*="btn-"]),
.added_to_cart:not([class*="btn-"]),
input[type="submit"]:not([class*="btn-"]) {
    background-color: #ECECEC;
    color: #3E3E3E;
    border-color: #ECECEC;
}

.btn.btn-color-primary {
    border-color: var(--cor-geral-site-hex);
    background-color: var(--cor-geral-site-hex);
    color: #ffffff;
}

.btn.btn-color-primary:hover {
    opacity: 0.8;
    color: #ffffff;
}

.btn.btn-color-gray {
    border-color: var(--color-geral-gray-hex);
    background-color: var(--color-geral-gray-hex);
    color: #ffffff;
}

.btn.btn-color-gray:hover {
    opacity: 0.8;
    color: #ffffff;
}

.btn.btn-lg {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
}

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-geral-site-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-geral-site-hex);
    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-family: var(--font-geral-2);
    font-weight: normal;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.subtitulo-conteudo {
    font-size: 1.8rem;
    font-family: var(--font-geral-2);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

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

.conteudos a {
    color: #000;
    text-decoration: underline;
}

.conteudos a:hover {
    color: var(--cor-geral-site-hex);
}

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;
}

.border-after-title {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.border-after-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 10%;
    margin: 0 auto;
    background-color: #EBEBEB;
}

.border-after-title.type_2 {
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.border-after-title.type_2::after {
    background-color: var(--cor-geral-site-hex);
    width: 30px;
    height: 2px;
}

.titulo-seccao-geral {
    font-family: var(--font-geral-2);
    font-style: italic;
    font-size: 4.2rem;
    line-height: 4.5rem;
    font-weight: 200;
    margin-bottom: 3rem;
}

.divider-titulo {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: initial;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.divider-titulo::before,
.divider-titulo::after {
    content: '';
    display: flex;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color);

    width: 50%;
    width: 30%;
    margin: 0 auto;
    min-height: var(--divider-pattern-height);
    -webkit-mask-size: var(--divider-pattern-size) 100%;
    mask-size: var(--divider-pattern-size) 100%;
    -webkit-mask-repeat: var(--divider-pattern-repeat);
    mask-repeat: var(--divider-pattern-repeat);
    background-color: var(--divider-color);
    -webkit-mask-image: var(--divider-pattern-url);
    mask-image: var(--divider-pattern-url);
}


.divider-titulo::before {
    text-align: right;
    margin-right: 0;
}
.divider-titulo::after {
    text-align: left;
    margin-left: 0;
}

.subtitulo-seccao-geral {
    color: var(--cor-geral-site-hex);
    font-size: 2rem;
}

.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-geral-site-hex);
}

.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: 1240px;
    }
}

@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%;
    }
}

/* - */
.modal_age_confirm .modal-dialog .modal-content {
    padding: 4rem;
    border-radius: 0.3rem;
    border: 1px solid #000000;
    box-shadow: 0px 0px 30px 0px rgba(2, 2, 2, 1.00);
    background-color: #fff;
}

.modal_age_confirm .modal-dialog .modal-header {
    padding: 0;
    border: none;
}

.modal_age_confirm .modal-dialog .modal-body {
    padding: 0;
    border: none;
}

.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%;
}

@media (max-width: 768px) {
    .captcha_container iframe {
        transform: scale(0.70);
        -webkit-transform: scale(0.70);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

/* - */
.btn {
    cursor: pointer;
    text-decoration: none !important;
}

@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 {
    --width-logo: 165px;
    --width-logo-mobile: 80px;
    --color-menu: #323232;
    background-color: #fff;
    position: relative;
    z-index: 5;
}

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-geral-site-hex);
    color: #ffffff;
    border-color: var(--cor-geral-site-hex);
}

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

header.cabecalho {
    min-height: var(--height-menu);
    width: 100%;
    position: fixed;
    /* z-index: 5; */
    z-index: 1030;
    top: 0;
    left: 0;
    right: 0;
}

@media (min-width: 992px) {
    body {
        padding-top: var(--height-menu);
    }

    body.paginas {
        padding-top: 10.5rem;
    }

    .paginas header.cabecalho {
        min-height: 10.5rem;
    }
}

@media (min-width: 992px) AND (max-width:1200px) {
    body {
        padding-top: 6.7rem;
    }

    header.cabecalho {}
}

@media (min-width: 992px) {
    body.paginas header.cabecalho .navbar {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    body.cabecalho-fixed header.cabecalho {}

    body.cabecalho-fixed header.cabecalho:after {
        height: 2.5rem;
    }

    body.cabecalho-fixed header.cabecalho .navbar-brand {}

    /* body.cabecalho-fixed header.cabecalho .navbar-brand img {
        width: auto;
        height: auto;
        margin: auto 0;
    } */

    body.cabecalho-fixed header.cabecalho .navbar-brand figcaption {}

    body.cabecalho-fixed header.cabecalho .navbar {}

    body.cabecalho-fixed header.cabecalho .menu-geral {}

    body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .nav-link,
    body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .nav-item,
    body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .dropdown.active.nav-item:after,
    body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .nav-item.active:after,
    body.cabecalho-fixed header.cabecalho .menu-geral .dropdown-menu .dropdown-item {}

    body.cabecalho-fixed header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link,
    body.paginas header.cabecalho .menu-geral .navbar-nav .nav-item.nav-home .nav-link {}

    body.cabecalho-fixed .menu-rapido .dropdown,
    body.paginas .menu-rapido .dropdown {
        margin: 0 0 0 2rem;
    }

    body.cabecalho-fixed .menu-rapido .menu-rapido-item .icon,
    body.paginas .menu-rapido .menu-rapido-item .icon {
        background-size: auto 5rem;
        width: 2.9rem;
        height: 2.5rem;
        margin: 0 auto 0.25rem auto;
    }

    body.cabecalho-fixed .menu-rapido .dropdown-menu,
    body.paginas .menu-rapido .dropdown-menu {
        border-top-width: 0.45rem;
    }
}

header.cabecalho .navbar {
    max-width: 90%;
    padding: 0;
    position: relative;
}

@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; */
    }
}

@media (max-width: 991px) {
    header.cabecalho .navbar-brand figure {
        margin: 0;
        padding: 0;
    }
}

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

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

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-geral-site-hex);
    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;
} */

@media (min-width: 992px) {
    header.cabecalho .navbar-brand {
        width: var(--width-logo);
        /* margin: 0 calc(var(--width-logo) / 2); */
        margin: 0 auto;
        position: absolute;
        /* z-index: 10; */
        left: var(--left-menu-w);
        right: var(--right-menu-w);
    }

    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) / 4);
        width: var(--width-logo);
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link {
        margin: 0 1rem;
        padding: 0.5rem 0.5rem;
        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-family: var(--sweetsanspro); */
        font-size: 1.4rem;
        line-height: normal;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--color-menu);
    }

    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: white;
        font-size: 1.2rem;
        right: -10px;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        display: none;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-item.dropdown.active .nav-link::after {
        color: rgb(var(--cor-geral-site-rgb));
    }

    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 {
        /* background-color: rgb(var(--cor-geral-site-rgb)); */
        color: rgb(var(--cor-geral-site-rgb));
    }

    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:hover,
    header.cabecalho .menu-geral .navbar-nav .nav-item.active {
        border-color: #025dd0;
        position: relative;
        z-index: 5;
    }

    /* - */

    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: #f5efe8;
        border: 0;
        border-radius: 0.25rem;
        min-width: 24rem;
        margin: 0;
        padding: 1rem 1rem;
        padding: 0;
        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: #838383;
        border-radius: 0;
        padding: 0.75rem 1.5rem;
        padding: 1.5rem 2.5rem;
        background-color: unset;
        border-left: 3px solid transparent;
        text-transform: none;
        font-size: 1.6rem;
        font-weight: normal;
    }

    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-geral-site-hex);
    }

    header.cabecalho .menu-geral .dropdown-menu .dropdown-item:hover {
        /* margin-left: 0.5rem; */
        color: var(--cor-geral-site-hex);
        border-color: #FC008FFF;
    }

    header.cabecalho .redesociais {
        -webkit-border-radius: 6px;
        -webkit-border-bottom-right-radius: 0px;
        -webkit-border-bottom-left-radius: 0px;
        -moz-border-radius: 6px;
        -moz-border-radius-bottomright: 0px;
        -moz-border-radius-bottomleft: 0px;
        border-radius: 6px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        padding: 1.65rem 0;
        position: relative;
        z-index: 0;
        bottom: 0;
    }

    body.cabecalho-fixed header.cabecalho .redesociais {
        padding: 0.5rem 0;
    }
}

@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 .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 .informacoes {
    font-size: 2.75rem;
    line-height: normal;
    font-weight: 800;
}

@media (max-width: 991px) {
    header.cabecalho .informacoes {
        position: absolute;
        z-index: 0;
        right: 9rem;
    }
}

@media (max-width: 576px) {
    header.cabecalho .informacoes {
        display: none;
    }
}

header.cabecalho .informacoes .icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 3.6rem;
    text-indent: -9000rem;
    text-align: left;
    border-radius: 0;
    float: left;
    width: 3.6rem;
    height: 3.6rem;
    margin: 0 1.5rem 0 0;
    display: inline-block;
}

header.cabecalho .informacoes .icon.icon-telefone {
    background-image: url(../images/icon-tel-size1.png);
}

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

/* - */
header.cabecalho .lang {
    display: none;
}

header.cabecalho .lang a {}

header.cabecalho .lang a.pt {}

header.cabecalho .lang a.en {}

@media (min-width: 992px) {

    body.cabecalho-fixed header.cabecalho,
    body.paginas.cabecalho-fixed header.cabecalho {
        position: fixed;
        opacity: 0;
        top: 0;
        -webkit-animation-name: cabecalhofixed_animation;
        -webkit-animation-duration: 0.5s;
        -webkit-animation-timing-function: ease;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-direction: normal;
        -webkit-animation-delay: 0;
        -webkit-animation-play-state: running;
        -webkit-animation-fill-mode: forwards;
        animation-name: cabecalhofixed_animation;
        animation-duration: 0.5s;
        animation-timing-function: ease;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-delay: 0;
        animation-play-state: running;
        animation-fill-mode: forwards;
        box-shadow: 0px 2px 7px 0px rgba(1, 32, 37, 0.1);
    }
}

@-webkit-keyframes cabecalhofixed_animation {
    0% {
        opacity: 0;
        top: -4.5rem;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes cabecalhofixed_animation {
    0% {
        opacity: 0;
        top: -4.5rem;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: var(--height-menu-mobile);
    }

    header.cabecalho .menu-geral {
        background-color: #ffffff;
        overflow-y: auto;
        position: fixed;
        inset: 0;
        height: 0;
        margin: var(--height-menu-mobile) 0 0 0;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    header.cabecalho {
        min-height: var(--height-menu-mobile);
        box-shadow: 0px 2px 7px 0px rgba(1, 32, 37, 0.3);
    }

    header.cabecalho .menu-geral {
        background-color: #0C0C0C;
    }

    header.cabecalho .navbar {
        padding: 0;
    }

    header.cabecalho .menu-geral .navbar-nav .nav-link,
    header.cabecalho .menu-geral .dropdown-menu .dropdown-item {
        font-size: 1.6rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        margin: 0;
        padding: 1.4rem 1.5rem;
        border-bottom: 1px solid rgba(92, 92, 92, 0.23);
    }

    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"] {
        background-color: var(--cor-geral-site-hex);
        color: #000000;
    }

    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: rgba(0, 0, 0, 0.10);
        background-color: #171717;
        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 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);
        padding: 0;
        justify-content: flex-end;
    }

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

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

    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: 1rem;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border: 0px solid transparent;
    }

    body.cabecalho-fixed .progresso {
        background-color: rgba(var(--cor4-rgb), 1);
    }
}

@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-color: rgb(var(--cor-geral-site-rgb));
    }
}

/* ----------- 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;
        font-family: var(--font-geral-2);
        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;
        font-family: var(--font-geral-2);
        color: #000;
        padding: 5px 0px;
    }
}



/* ----------- RODAPE ----------- */
footer.rodape {
    --color-geral-rodape: rgb(158, 158, 158);
    background-color: #F5EFE8;
    color: var(--color-geral-rodape);
    font-size: 1.5rem;
    background-image: url("../images/padrao-loja-noivas.webp");
    background-position: center center;
    background-size: cover;
    position: relative;
}

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

footer.rodape .footer-padding-bottom {
    padding-bottom: 5rem;
    padding-top: 3rem;
}

footer.rodape .footer-border-bottom {
    border-bottom: 1px solid #fff;
}

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

footer.rodape .seccao-contactos {
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer.rodape .seccao-contactos .icon {
    color: rgba(var(--cor-geral-site-rgb), 1);
    border: solid 0.2rem rgba(var(--cor-geral-site-rgb), 1);
    color: #fff;
    border: solid 0.2rem #fff;
    font-size: 0;
    text-align: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin: 0 1rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer.rodape .seccao-contactos .icon i:before,
footer.rodape .seccao-contactos .icon em:before {
    font-size: 2.1rem;
}

footer.rodape .descricao a {
    color: var(--cor-geral-site-hex);
    text-decoration: none;
}

footer.rodape .descricao a:hover {
    color: #121212;
}

footer.rodape a {
    color: inherit;
}

footer.rodape a:hover {
    color: #fff;
}

footer.rodape .tit.color-og {
    color: inherit;
}

footer.rodape .tit {
    color: #393939;
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

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 a:hover {
    color: var(--cor-geral-site-hex);
    text-decoration: none;
}

footer.rodape .sub-menu.inline-menu li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 0.8rem;
}
footer.rodape .sub-menu.inline-menu li:last-child {
    margin-right: 0;
}

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: -0.3rem;
    margin-right: -0.3rem;
}

footer.rodape .redesociais a {
    width: 2rem;
    height: 2rem;
    margin: 0 0.6rem;
    background-color: var(--color-geral-rodape);
}

@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.4rem;
    background-color: #fff;
    padding: 2rem 0;
    color: #4C4C4C;
}

.copyright-section a {
    color: inherit;
}

/* ----- */


.redesociais {}

.redesociais a {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    text-indent: -9000rem;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0.2rem;
    display: inline-block;
    position: relative;
    z-index: 0;
    top: 0;
    opacity: 1;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.redesociais .facebook svg {
    width: 100%;
    height: 90%;
    position: relative;
    z-index: 0;
}

.redesociais a:hover {
    top: -4px;
}

.redesociais a,
.redesociais a: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;
}

.redesociais .facebook {
    /* background-image: url(../images/icon-facebook.png) */
    -webkit-mask-image: url(../images/icon-facebook.svg);
    mask-image: url(../images/icon-facebook.svg);
}

.redesociais .instagram {
    /* background-image: url(../images/icon-instagram.png); */
    -webkit-mask-image: url(../images/icon-instagram.svg);
    mask-image: url(../images/icon-instagram.svg);
}

.redesociais .tiktok {
    /* background-image: url(../images/icon-tiktok.png); */
    -webkit-mask-image: url(../images/icon-tiktok.svg);
    mask-image: url(../images/icon-tiktok.svg);
}

.redesociais .youtube {
    /* background-image: url(../images/icon-youtube.png); */
    -webkit-mask-image: url(../images/icon-youtube.svg);
    mask-image: url(../images/icon-youtube.svg);
}

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

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

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

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

@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-geral-site-hex);
    background-color: var(--cor-geral-site-hex);
    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-geral-site-hex);
    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-geral-site-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*/



.seccao-subtitulo {
    font-family: var(--font-geral-2);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.seccao-titulo {
    font-size: 4rem;
    /* line-height: normal; */
    line-height: 4.2rem;
    font-weight: bold;
    /* text-transform: uppercase; */
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}


/* 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-geral-site-hex);
    background-color: rgb(255, 255, 255);
}

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


.title_geral_site {
    color: rgb(var(--cor1-rgb));
    /* line-height: 1.1; */
    letter-spacing: 0em;
    font-size: 5rem;
    font-family: var(--font-titulos);
    font-weight: 400;
    font-style: normal;
    margin-bottom: 3rem;
}

.title_geral_site.type-1 {
    font-size: 4rem;
}

.title_geral_site.type-2 {
    font-size: 2.95rem;
}

.subtitle_geral_site {
    color: var(--cor-geral-site-hex);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: var(--font-subtitulos);
    font-weight: 700;
    font-style: normal;
    /* line-height: 1.9; */
    letter-spacing: var(--letter-spacing-subtitulos);
    margin-bottom: 1.2rem;
}

.subtitle_geral_site.type-1 {
    font-size: 1.8rem;
    /* line-height: 1.6; */
}

.subtitle_geral_site.type-2 {
    font-size: 2.8rem;
}

.subtitle_geral_site.type-3 {
    font-size: 1.4rem;
    /* line-height: 1.6; */
}


@media (max-width: 992px) {
    .title_geral_site {
        font-size: 4.5rem;
    }

    .title_geral_site.type-1 {
        font-size: 4rem;
    }

    .title_geral_site.type-2 {
        font-size: 2.95rem;
    }
}









.subtitle_geral_v2 {
    color: var(--cor-geral-site-hex);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: var(--font-subtitulos);
    font-weight: 700;
    font-style: normal;
    line-height: 1.9;
    letter-spacing: var(--letter-spacing-subtitulos);
}

.title_geral_v2 {
    color: rgb(var(--cor1-rgb));
    line-height: 1.1;
    letter-spacing: 0em;
    font-size: 4rem;
    text-align: left;
    font-family: var(--font-titulos);
    font-weight: 400;
    font-style: normal;
}

.title_geral_v2.bigger {
    font-size: 4.9rem;
}

@media (max-width: 992px) {
    .subtitle_geral_v2 {
        font-size: 1.6rem;
    }

    .title_geral_v2 {
        font-size: 4rem;
    }

    .title_geral_v2.bigger {
        font-size: 4.9rem;
    }
}

/* ========= Bloco banner off ========= */
.bloco-image-banner-off {
    --space-off-block: 60px;
    width: 100%;
    min-height: 644px;
    display: flex;
    align-items: flex-end;
    margin-bottom: calc(var(--space-off-block) * 2);
}

.bloco-image-banner-off .inner-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: var(--space-off-block);
}

.bloco-image-banner-off .inner-banner .image-mobile {
    display: none;
}

.bloco-image-banner-off .inner-banner .banner-caption-drop {
    /* position: absolute;
        left: 0;
        bottom: 0; */
    background-color: #ffffff;
    max-width: 650px;
    padding: 3rem 6rem;
}

@media (max-width: 992px) {
    .bloco-image-banner-off {
        background-image: none !important;
        min-height: unset;
        margin-bottom: 0;
    }

    .bloco-image-banner-off .inner-banner {
        top: unset;
    }

    .bloco-image-banner-off .inner-banner .image-mobile {
        display: block;
    }

    .bloco-image-banner-off .inner-banner .banner-caption-drop {
        max-width: 100%;
        padding: 2rem;
    }
}

/* ========= Bloco banner off ========= */
/* ========= Bloco New FAQ's ========= */
.modulo-item-listagem.modulo-lista-faqs-new {
    --space-number-text: 3rem;
    --cor-geral-faqs-rgb: var(--cor3-rgb);
}

.modulo-item-listagem.modulo-lista-faqs-new .card {}

@media (max-width: 769px) {
    .modulo-item-listagem.modulo-lista-faqs-new .card .card-body {
        padding: 0 2rem;
    }
}

.modulo-item-listagem.modulo-lista-faqs-new .card .faq {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
}

.modulo-item-listagem.modulo-lista-faqs-new .card .open-faq {
    text-align: center;
    color: rgb(var(--cor-geral-faqs-rgb));
    font-size: 2rem;
    cursor: pointer;
}

.modulo-item-listagem.modulo-lista-faqs-new .card .open-faq i {
    transition: all .3s ease-in;
}

.modulo-item-listagem.modulo-lista-faqs-new .card .open-faq[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.modulo-item-listagem.modulo-lista-faqs-new .card .border-bottom {
    border-bottom: 1px solid rgb(var(--cor-geral-faqs-rgb));
    padding: 2rem 0rem;
}

.modulo-item-listagem.modulo-lista-faqs-new .card:last-child .border-bottom {
    border-bottom: none;
}

.modulo-item-listagem.modulo-lista-faqs-new .card:nth-child(2n+0) .faq {
    flex-direction: row-reverse;
    text-align: right;
}

.modulo-item-listagem.modulo-lista-faqs-new .card:nth-child(2n+0) .faq .number {
    margin-left: var(--space-number-text);
    margin-right: 0;
}

.modulo-item-listagem.modulo-lista-faqs-new .card .faq .number {
    color: rgb(var(--cor-geral-faqs-rgb));
    font-size: 8rem;
    font-family: var(--font-titulos);
    font-weight: 400;
    font-style: normal;
    margin-right: var(--space-number-text);
}

.modulo-item-listagem.modulo-lista-faqs-new .card .faq .text {
    color: #3a3a3c;
    font-size: 3rem;
    font-family: var(--font-titulos);
    font-weight: 400;
    font-style: normal;
}

/* ========= Bloco New FAQ's ========= */
/* ========= Bloco listagem esquerda/direita ========= */
.modulo-item-listagem.modulo-lista-blocos-ed {}

.modulo-item-listagem.modulo-lista-blocos-ed .card {
    border: none;
    margin-bottom: 10rem;
}

.modulo-item-listagem.modulo-lista-blocos-ed .card:last-child {
    margin-bottom: 0;
}

.modulo-item-listagem.modulo-lista-blocos-ed .card .card-body {}

@media (max-width: 992px) {
    .modulo-item-listagem.modulo-lista-blocos-ed .card {
        margin-bottom: 6rem;
    }

    .modulo-item-listagem.modulo-lista-blocos-ed .card .card-img {
        margin-bottom: 3rem;
    }
}

/* ========= Bloco listagem esquerda/direita ========= */


/* ========= Bloco listagem 3-3 ========= */
.bloco-padding-type1 {
    /* padding: 10rem 0; */
    padding: 5rem 0;
}

.row.space-between-var {
    margin-right: calc(var(--var-space-between) * -1);
    margin-left: calc(var(--var-space-between) * -1);
}

.row.space-between-var>[class*=col-] {
    padding-right: var(--var-space-between);
    padding-left: var(--var-space-between);
}

/*.modulo-item-listagem.modulo-lista-blocos-3-3 [class*=col-] {
        position: relative;
    }*/
.modulo-item-listagem.modulo-lista-blocos-3-3 [class*=col-]:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cor-blocos-3-3);
}

.modulo-item-listagem.modulo-lista-blocos-3-3 [class*=col-]:last-child:after {
    content: unset;
    display: none;
}

.modulo-item-listagem.modulo-lista-blocos-3-3 .titulo-bloco {
    color: var(--cor-blocos-3-3);
    text-transform: uppercase;
    line-height: 1.9;
    letter-spacing: var(--letter-spacing-subtitulos);
    font-size: 2.8rem;
    font-family: var(--font-subtitulos);
    font-weight: 700;
    font-style: normal;
}

@media (max-width: 992px) {
    .modulo-item-listagem.modulo-lista-blocos-3-3 .titulo-bloco {
        letter-spacing: 0.12em;
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .modulo-item-listagem.modulo-lista-blocos-3-3 [class*=col-] {
        margin-bottom: 4rem;
    }

    .modulo-item-listagem.modulo-lista-blocos-3-3 [class*=col-]:after {
        content: unset;
        display: none;
    }
}

/* ========= Bloco listagem 3-3 ========= */

/* ========= Bloco Compra ========= */
.modulo-item-listagem.modulo-compra-lista {
    font-size: 1.4rem;
    color: #777;
}

.modulo-item-listagem.modulo-compra-lista .card {
    border: none;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box {
    font-weight: 400;
    padding: 3rem;
    margin-bottom: 0.8rem;
    border: 1px solid #e2e2e2;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .item-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .item-container .details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .item-container .details .label {
    color: rgb(var(--cor1-rgb));
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .item-container .description {
    margin-top: 2rem;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .btn.btn-compra {
    margin-left: 1rem;
    background-color: rgb(var(--cor5-rgb));
    color: #ffffff;
    font-size: 1.4rem;
    line-height: normal;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2rem;
    padding: 0.8rem 2.5rem;
}

.modulo-item-listagem.modulo-compra-lista .card .item-box .btn.btn-compra:hover {
    background-color: rgb(var(--cor4-rgb));
}

@media (max-width: 992px) {
    .modulo-item-listagem.modulo-compra-lista .card .item-box {
        padding: 1.8rem;
        margin-bottom: 1.8rem;
    }
}

/* ========= Bloco Compra ========= */
/* NOVOS BLOCOS/ESTILOS */


.quantidade-escolha {
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    white-space: nowrap;
    margin-right: 1.5rem;
    margin-left: 0.5rem;
    font-size: 1.4rem;
}

.quantidade-escolha .menos,
.quantidade-escolha .mais {
    background-color: transparent;
    border: 1px solid #E0E0E0;
    background-color: transparent;
    color: #848484;
    padding: 1rem;
    line-height: 1.8rem;
    background-color: #f9f9f9;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

.quantidade-escolha .menos:hover,
.quantidade-escolha .mais:hover {
    background-color: #ececec;
    border-color: #E0E0E0;
}

.quantidade-escolha .menos {
    border-right: 0;
}

.quantidade-escolha .mais {
    border-left: 0;
}

.quantidade-escolha input[type="number"],
.quantidade-escolha .box-quantidade {
    color: #848484;
    text-align: center;
    width: 4rem;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantidade-escolha input[type="number"]::-webkit-outer-spin-button,
.quantidade-escolha input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


#timer {
    vertical-align: middle;
    padding-top: 20px;
    font-size: 20px;
    color: #ffffff;
    background: #cc0000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    float: unset;
}

/* Pagamentos escolha */
.pagamentos-choose-geral {
    --margin-li-pagamentos: 0.3rem;
    --height-width-box: 56px;
    --background-active-box: #dfe9fc9c;
    --border-radius-box: 0.5rem;
    --value-blur: 2px;
}

.pagamentos-choose-geral .nav {
    margin: 0 calc(var(--margin-li-pagamentos) * -1);
}

.pagamentos-choose-geral .nav .nav-item {
    border-radius: var(--border-radius-box);
    border: 1px solid #dee2e6;
    margin: 0 var(--margin-li-pagamentos);
}

.pagamentos-choose-geral .nav .nav-item .nav-link {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-box);
    margin: 0;
    background-color: unset;
    height: var(--height-width-box);
    width: var(--height-width-box);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pagamentos-choose-geral .nav .nav-item .nav-link.active {
    background-color: var(--background-active-box);
}

.pagamentos-choose-geral .nav .nav-item img {
    max-width: 100%;
}

.pagamentos-choose-geral .nav .nav-item .input-hide {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.table.no-style {
    background-color: unset;
}

.table.no-style td,
.table.no-style tr {
    padding: 0;
    height: auto;
    border: none;
}

.pagamentos-choose-geral .text-blur {
    -webkit-filter: blur(var(--value-blur));
    -moz-filter: blur(var(--value-blur));
    -o-filter: blur(var(--value-blur));
    -ms-filter: blur(var(--value-blur));
    filter: blur(var(--value-blur));
}

.formulario .checkbox-group-extra {
    display: none
}

.formulario .checkbox-group-extra.show {
    display: block
}

/* Pagamentos escolha */



/* 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-geral-site-hex);
    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 */

.lang-chose-fixed {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    right: 0;
    text-align: left;
    width: 36px;
    opacity: 0.75;
    padding: 10px 6px;
    position: fixed;
    top: 200px;
    z-index: 999;
}

.lang-chose-fixed ul {
    list-style: none;
    line-height: 1;
    position: relative;
    padding: 0;
    margin: 0 !important;
}

.lang-chose-fixed ul li {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.lang-chose-fixed ul li:last-child {
    margin-bottom: 0;
}

.lang-chose-fixed .lang-link {
    display: flex;
    text-decoration: none;
}

.lang-chose-fixed .lang-flag {
    display: inline;
    vertical-align: middle;
    width: 18px;
    height: 12px;
}

/* ==================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);
}


.elemento-divisao {
    background-image: url(../images/linis-padrao-vestidos.svg);
    background-color: #F5EFE8;
    padding-top: 420px;
    padding-bottom: 80px;


    position: relative;
    width: 100%;
    min-width: 0;
    min-height: initial;
    height: auto;
    border-radius: 0;
    margin: -400px 0px 0px 0px;
    padding-left: 0px;
    padding-right: 0px;
    /* z-index: revert; */
    z-index: -1;
    overflow: visible;

    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
}

.corposite .elemento-divisao {
    /* margin-left: -15px;
    margin-right: -15px;
    left: -15px;
    right: -15px; */
}

.elemento-divisao .elemento-shape.elemento-shape-bottom {
    transform: rotate(180deg);
}

.elemento-divisao .elemento-shape svg {
    width: calc(300% + 1.3px);
    height: 15px;
}


.elemento-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr
}
/* .elemento-shape::before {
    content: "";
    display: block;
    width: 100%;
    height: 131px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2600 131.1' preserveAspectRatio='none'>\<path fill='%23ffffff' d='M0 0L2600 0 2600 69.1 0 0z'/>\<path fill='%23ffffff' opacity='0.5' d='M0 0L2600 0 2600 69.1 0 69.1z'/>\<path fill='%23ffffff' opacity='0.25' d='M2600 0L0 0 0 130.1 2600 69.1z'/>\</svg>");
} */

.elemento-shape-top {
    top: -1px;
}

.elemento-shape-bottom {
    bottom: -1px
}
.elemento-shape[data-negative=false].elemento-shape-bottom,
.elemento-shape[data-negative=true].elemento-shape-top {
    transform: rotate(180deg)
}

.elemento-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* z-index: -1; */

    width: calc(1000% + 1.3px);
    height: 116px;
    transform: translateX(-50%) rotateY(180deg);
}

.elemento-shape .elemento-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg)
}

section.background-element-effects {
    background-color: #F5EFE8;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 13rem;
    padding-top: 13rem;
}