*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    --font-default: Montserrat, sans-serif;
    --font-primary: Montserrat, sans-serif;
    --font-secondary: Montserrat, sans-serif;
    --color-1: #00efee;
    --color-2: #005a78;
    --color-3: #ffffff;    
    --color-4: #000820;
    --color-5: #1c1c1b;
    --color-whatsapp: #0cb940;
    --bs-white-rgb: 255, 255, 255;

    --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}


:root {
    --font-size-h1-desktop: 2.625rem;
    --font-size-p-desktop: 1.125rem;

    --font-size-h1-mobile: 1.895rem;
    --font-size-h2-mobile: 1.8rem;
    --font-size-h3-mobile: 1.4rem;
    --font-size-p-mobile: 1.125rem;

    --font-size-h1-fullhd: 3.625rem;
    --font-size-h2-fullhd: 2.75rem;
    --font-size-h3-fullhd: 2.8rem;
    --font-size-p-fullhd: 1.75rem;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-tap-highlight-color: transparent;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
}

h1,
h2,
h3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width:1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: calc(1.325rem + .9vw);
}

@media (min-width:1200px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

@media (min-width:1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

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

ul {
    padding-left: 2rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

strong {
    font-weight: bolder;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: var(--bs-link-hover-color);
}

img {
    vertical-align: middle;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

[type=button],
button {
    -webkit-appearance: button;
}

[type=button]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

iframe {
    border: 0;
}

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

.container,
.container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.gy-4 {
    --bs-gutter-y: 1.5rem;
}

@media (min-width:768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width:992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

.share{
    background: #fff;
    padding: 15px;
    border-radius: 5px solid ;
}

.btn-whatsapp-black{
    margin-left: 0px;
    border: 2px solid var(--color-whatsapp);
    color: var(--color-3);
    border-radius: 50px;
    padding: 16px 28px;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
    font-size: 15px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-whatsapp-black:hover{
    background: var(--color-3);
    color: var(--color-whatsapp);
    border: 3px solid var(--color-whatsapp);
}


.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn.disabled,
.btn:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.collapse:not(.show) {
    display: none;
}

.accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #212529;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #0c63e4;
    --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none;
    }
}

/* .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
} */

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
}

.align-middle {
    vertical-align: middle !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

@media (min-width:768px) {
    .d-md-block {
        display: block !important;
    }

    .d-md-none {
        display: none !important;
    }
}

@media (min-width:992px) {
    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

/*! CSS Used from: https://acisb.exitusmarketing.com.br/assets/vendor/boxicons/css/boxicons.min.css */
.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bxs-quote-alt-left:before {
    content: "\ee81";
}

.bxs-quote-alt-right:before {
    content: "\ee82";
}

/*! CSS Used from: https://acisb.exitusmarketing.com.br/assets/vendor/swiper/swiper-bundle.min.css */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after {
    content: 'prev';
}

.swiper-button-next {
    right: 10px;
    left: auto;
}

.swiper-button-next:after {
    content: 'next';
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

/*! CSS Used from: https://acisb.exitusmarketing.com.br/assets/css/style.css */
section {
    padding: 60px 0px 60px 0px;
}

.section-header {
    text-align: left;
    padding: 0px 0px 10px 0px;
    position: relative;
}

.section-header h2 {
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 0;
    z-index: 2;
    position: relative;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header span {
    color: var(--color-3);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 0;
}

.section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

body {
    font-family: var(--font-default);
    color: var(--color-5);
}

a {
    color: var(--color-2);
    text-decoration: none;
}

h1 {
    font-size: var(--font-size-h1-desktop);
    font-weight: bold;
    width: 100%;
}

p {
    font-size: var(--font-size-p-desktop);
}

.img-logo {
    border-radius: 0px;
    max-width: 404px;
    max-height: 74px;
    width: 100%;
    height: auto;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 30px;
    background-color: rgb(41 167 26);
    color: rgb(255, 255, 255);
    border-radius: 50px;
    text-align: center;
    box-shadow: rgb(153, 153, 153) 2px 2px 3px;
    z-index: 100;
    transition: all 0.2s ease-in-out 0s;
}

.whatsapp-float img {
    padding: 0;
    margin: 15%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: rgb(41 167 26);
    box-shadow: rgb(153, 153, 153) 3px 3px 4px;
    color: rgb(255, 255, 255) !important;
}

.btn {
    border: 2px solid var(--color-1);
    border-radius: 50px;
    line-height: 18px;
    overflow: hidden;
    padding: 16px 28px;
    position: relative;
    text-align: center;
    transition: color 0.3s ease 0s, background-position 0.3s ease 0s;
    white-space: pre;
    z-index: 1;
    background-size: 100% 200%;
    font-weight: 800;
    color: rgb(255, 255, 255);
}

.btn:hover {
    border: 3px solid var(--color-3);
    background: var(--color-2);
}

.hero {
    background: var(--color-4);
    position: relative;
    color: var(--color-3);
    padding: 0;
}
.hero, .hero .row {
    width: 100%;
    height: 60vh;
}


.post {
    width: 100%;
    height: auto;
    background: var(--color-5);
    position: relative;
    padding: 0px;
}
/* 
.post-title::before {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0%;
    width: 45%;
    height: 112%;
    background-size: 12px 12px;
    background-position: center center;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(rgb(115, 115, 115) 14%, transparent 14%);
    z-index: 0;
} */

.post-title {
    padding: 40px;
}

#post-row-1 .post-img{
    background-image: url('../img/img-1-min.jpg');
}
#post-row-2 .post-img{
    background-image: url('../img/img-2-min.jpg');
    background-position: left;
}
#post-row-3 .post-img{
    background-image: url('../img/img-3-min.jpg');
}
.post-img {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #020202;
}
@media (max-width: 768px) {
    .post-img {
        height: 35vh;
    }
}

.depoimentos {
    background: linear-gradient(128deg, var(--color-4) 25%, var(--color-5) 50%);
}

.depoimentos .depoimento-wrap {
    padding: 0px;
}

.depoimentos .depoimentos-slider {
    overflow: hidden;
}

.depoimentos .depoimento-item iframe {
    width: 450px;
    height: 250px;
}

.depoimentos .depoimento-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 10px 20px;
    min-height: 320px;
    box-shadow: rgba(44, 73, 100, 0.08) 0px 2px 12px;
    position: relative;
    background: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
    height: 500px;
}

.depoimentos .depoimento-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0px 5px;
    color: rgb(17, 17, 17);
}

.depoimentos .depoimento-item .quote-icon-left,
.depoimentos .depoimento-item .quote-icon-right {
    color: var(--cor-primaria);
    font-size: 26px;
}

.depoimentos .depoimento-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.depoimentos .depoimento-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.depoimentos .depoimento-item p {
    font-style: italic;
    margin: 15px auto;
    color: var(--color-5) !important;
}

.depoimentos .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.depoimentos .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    border: 2px solid var(--color-2);
}

.depoimentos .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--cor-primaria);
}

.cta {
    padding: 80px 0px;
    background: var(--color-4);
}

.cta p {
    color: rgb(255, 255, 255);
}

.cta .cta-btn {
    font-family: Jost, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.cta .cta-btn:hover {
    background: rgb(255, 255, 255);
    border: 0px;
    color: var(--cor-primaria);
}

.sobre-curso ul {
    list-style: none;
}

.sobre-curso ul li {
    margin-bottom: 18px;
}

.sobre-curso .modulo {
    background: linear-gradient(3deg, var(--color-2) 11%, var(--color-4) 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 310px;
    border-radius: 5px;
}

.modulo .cta-btn {
    font-family: Jost, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.modulo .cta-btn:hover {
    background: rgb(255, 255, 255);
    border: 0px;
    color: var(--color-4);
}

.sobre-curso {
    background: linear-gradient(128deg, var(--color-5) 25%, var(--color-4) 50%);
    color: var(--color-3);
}

.sobre-curso .modulo h2,
.sobre-curso .modulo span {
    margin: 5px;
}

.sobre-curso .resume {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    margin-top: 20px;
}

.div-inter {
    width: 100%;
    background: linear-gradient(343deg, var(--color-2) 11%, var(--color-2) 50%);
    height: 10px;
}

.perfil {
    padding-bottom: 1px;
}

.local {
    background: var(--color-5);
    color: var(--color-3);
}

.swiper-local-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.local .cta-btn {
    font-family: Jost, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.local .cta-btn:hover {
    background: rgb(255, 255, 255);
    border: 0px;
    color: var(--color-5);
}

.local .local-descricao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.planos {
    background: var(--color-5);
    color: var(--color-3);
    padding-bottom: 60px;
}

.planos .box {
    border-radius: 5px;
    border: 4px solid var(--color-1);
    padding: 25px;
    height: 100%;
    position: relative;
}

.planos .box .forma-pagamento {
    position: sticky;
    bottom: 0;
    left: 0;
    top: 100%;
}

.planos .box ul {
    padding: 0;
    list-style: none;
    text-align: left;
}

.planos .box ul li {
    margin-bottom: 15px;
}

.planos .box .valor-parcelado {
    display: block;
    font-size: 35px;
    font-weight: 800;
}

.planos .box .btn {
    font-family: Jost, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 12px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.perfil {
    background: linear-gradient(-3deg, var(--color-2) 11%, var(--color-4) 50%);
}

.perfil .perfil-item+.perfil-item {
    margin-top: 100px;
}

.perfil .perfil-item h3 {
    font-weight: 700;
    border-left: 10px solid var(--color-1);
    padding-left: 10px;
}

.perfil .perfil-item img {
    border: 6px solid var(--color-box-background);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px -10px;
    border-radius: 5px;
}

.faq {
    padding-bottom: 60px;
    background: linear-gradient(-3deg, var(--color-2) 11%, var(--color-4) 50%);
    color: var(--color-3);
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 30px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
}

.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

@media (min-width: 1920px) and (min-height: 1080px) {
    
    .modulo .cta-btn {
        font-size: var(--font-size-p-fullhd);
    }

    .meses-acesso {
        font-size: var(--font-size-p-fullhd);
    }

    .planos .box .btn {
        padding: 20px 25px;
    }

    .btn {
        font-size: var(--font-size-p-fullhd);
        padding: 30px 45px;
    }

    .cta .cta-btn {
        font-size: var(--font-size-p-fullhd);
        padding: 20px 15px;
        width: 100%;
    }

    .local .cta-btn {
        font-size: var(--font-size-p-fullhd);
        padding: 15px 30px;
        margin: 0;
        width: 100%;
    }

    

    p {
        font-size: var(--font-size-p-fullhd);
    }

    h1 {
        font-size: var(--font-size-h1-fullhd);
    }

    h2 {
        font-size: var(--font-size-h2-fullhd);
    }

    h3 {
        font-size: var(--font-size-h3-fullhd);
    }

    .planos .box .forma-pagamento-parcelado {
        font-size: var(--font-size-p-fullhd);
    }

    .planos .box .valor-parcelado {
        display: block;
        font-size: var(--font-size-h1-fullhd);
        font-weight: 800;
    }

    .valor-vista {
        font-size: var(--font-size-p-fullhd);
    }

    .status {
        font-size: 22px;
    }

    ul li,
    .accordion-body {
        font-size: var(--font-size-p-fullhd);
    }

    .faq .accordion-button {
        font-size: var(--font-size-p-fullhd);
    }

    .post-title ul li {
        margin-bottom: 15px;
    }

    .depoimentos .section-header p {
        margin: 15px 0px 10px 0px;
    }

    .depoimentos .depoimento-item {
        height: 650px;
    }

    .depoimentos .depoimento-item h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .depoimentos .depoimento-wrap {
        padding: 0px;
        margin: 0 auto;
    }

    .depoimentos .depoimentos-slider {
        overflow: hidden;
    }

    .depoimentos .depoimento-item {
        padding: 30px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .curso-slider .modulo-mobile {
        border-radius: 5px;
        padding: 30px 6px 30px 6px;
    }

    .curso-slider {
        height: auto;
    }

    .depoimentos .depoimento-item iframe {
        width: 100%;
        height: auto;
    }

    ul li,
    .accordion-body {
        font-size: var(--font-size-p-mobile);
    }

    .faq .accordion-button {
        font-size: var(--font-size-p-mobile);
    }

    .post-title {
        padding: 20px;
    }

    .perfil .perfil-item+.perfil-item {
        margin-top: 40px;
    }

    .section-header h2 {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .section-header span {
        font-size: var(--font-size-p-mobile);
        line-height: revert;
    }

    p {
        font-size: var(--font-size-p-mobile);
    }

    h1 {
        font-size: var(--font-size-h1-mobile);
    }

    h2 {
        font-size: var(--font-size-h2-mobile);
    }

    h3 {
        font-size: var(--font-size-h3-mobile);
    }

    .btn {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
    }

    .cta .cta-btn {
        font-size: 14px;
        padding: 15px 0px 15px;
        width: 100%;
        margin: 0;
    }

    .local .cta-btn {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
    }

    .hero {
        width: 100%;
        height: auto;
        background: var(--color-4);
        position: relative;
        padding-bottom: 90px;
        color: var(--color-3);
    }
}

.swiper {
    max-height: 750px;
    height: auto;
}


.about {
    width: 100%;
    height: auto;
    background: var(--color-5);
    position: relative;
    padding: 0px;
}
/* 
.about-title::before {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0%;
    width: 45%;
    height: 112%;
    background-size: 12px 12px;
    background-position: center center;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(rgb(115, 115, 115) 14%, transparent 14%);    
    z-index: 0;
} */

.about-title {
    padding: 40px;
}

.about-img {
    background: url('../img/foto-de-helio-morais-marketing-digital-para-empresarios.webp');
    height: 100vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-color: #020202; */
    background-color: linear-gradient(-3deg, var(--color-2) 11%, var(--color-4) 50%);
}

.footer .footer-top {padding-top: 50px;}
.footer .copyright {padding-bottom: 15px;}
.footer .credits {margin-top: 6px;font-size: 13px;}