@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset CSS */

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secundary-color);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #e46b14;
    --secundary-color: #001563;
    --white-color: #ffffff;
    --white-bg-color: #ffffff;
    --card-background: #e8ebee;
    --theme-color: #f7f7f7;
    --font-family: "Montserrat", sans-serif;
}

body.dark-theme {
    --primary-color: #e46b14;
    --secundary-color: #ffffff;
    --white-color: #000000;
    --card-background: #334155;
    --theme-color: #1e293b;
}

/* @media (prefers-color-scheme: dark) {
    body {
        --primary-color: #E46B14;
        --secundary-color: #ffffff;
        --white-color: #000000;
        --card-background: #334155;
        --theme-color: #1E293B;
    }
} */

body {
    font-family: var(--font-family);
    background-color: var(--theme-color);
    color: var(--secundary-color);
    font-size: 100%;
    list-style-type: none;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.7rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

ul {
    padding: 1rem;
}

li {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2rem;
}

textarea:focus,
input:focus,
select:focus,
button:focus,
a:focus {
    outline: none;
}

textarea {
    resize: none;
}

.button {
    border: none;
    background-color: inherit;
    border-radius: 0.5rem;
    padding: 1rem;
    max-width: 20rem;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    height: 3.2rem;
}

.button:hover {
    opacity: 0.9;
}

header {
    background-color: transparent;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: background-color 0.3s ease;
}

header.active {
    background-color: var(--secundary-color) !important;
}

.overflow-none {
    overflow: hidden;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secundary-color);
}

.white-color {
    color: var(--white-color);
}

.primary-bg-color {
    background-color: var(--primary-color);
}

.secondary-bg-color {
    background-color: var(--secundary-color);
}

.white-bg-color {
    background-color: var(--white-color);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    display: block;
    padding: 0 2rem;
}

/* Header */

.header-logo img {
    height: 2.5rem;
}

.mobile-menu {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu span {
    color: var(--white-color);
    font-size: 1.2rem;
    line-height: 1.5;
}

.nav-menu .active {
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}

/* Banner Hero */

.banner-hero {
    background-image: url("../images/banner_hero_background.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 825px;
    padding: 10rem 0;
    position: relative;
    z-index: 1;
}

.banner-hero ::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: var(--theme-color);
    clip-path: polygon(
        100% 100%,
        0% 100%,
        0% 96.22%,
        1% 96.5%,
        2% 96.74%,
        3% 96.93%,
        4% 97.08%,
        5% 97.19%,
        6% 97.26%,
        7% 97.28%,
        8% 97.25%,
        9% 97.18%,
        10% 97.07%,
        11% 96.91%,
        12% 96.71%,
        13% 96.47%,
        14% 96.19%,
        15% 95.86%,
        16% 95.49%,
        17% 95.09%,
        18% 94.64%,
        19% 94.16%,
        20% 93.64%,
        21% 93.09%,
        22% 92.5%,
        23% 91.88%,
        24% 91.23%,
        25% 90.55%,
        26% 89.84%,
        27% 89.11%,
        28% 88.35%,
        29% 87.57%,
        30% 86.78%,
        31% 85.96%,
        32% 85.13%,
        33% 84.29%,
        34% 83.43%,
        35% 82.57%,
        36% 81.69%,
        37% 80.82%,
        38% 79.94%,
        39% 79.06%,
        40% 78.18%,
        41% 77.31%,
        42% 76.44%,
        43% 75.58%,
        44% 74.73%,
        45% 73.89%,
        46% 73.07%,
        47% 72.27%,
        48% 71.48%,
        49% 70.72%,
        50% 69.98%,
        51% 69.26%,
        52% 68.57%,
        53% 67.91%,
        54% 67.27%,
        55% 66.67%,
        56% 66.11%,
        57% 65.57%,
        58% 65.07%,
        59% 64.61%,
        60% 64.19%,
        61% 63.81%,
        62% 63.47%,
        63% 63.17%,
        64% 62.91%,
        65% 62.69%,
        66% 62.52%,
        67% 62.39%,
        68% 62.3%,
        69% 62.26%,
        70% 62.26%,
        71% 62.31%,
        72% 62.4%,
        73% 62.54%,
        74% 62.71%,
        75% 62.94%,
        76% 63.2%,
        77% 63.5%,
        78% 63.85%,
        79% 64.24%,
        80% 64.66%,
        81% 65.13%,
        82% 65.63%,
        83% 66.17%,
        84% 66.74%,
        85% 67.34%,
        86% 67.98%,
        87% 68.64%,
        88% 69.34%,
        89% 70.06%,
        90% 70.8%,
        91% 71.57%,
        92% 72.36%,
        93% 73.16%,
        94% 73.99%,
        95% 74.82%,
        96% 75.67%,
        97% 76.53%,
        98% 77.4%,
        99% 78.28%,
        100% 79.16%
    );
    z-index: -1;
}

.banner-hero-content {
    display: flex;
}

.banner-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 50;
    color: var(--white-color);
}

.banner-hero-img-desktop {
    flex: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-hero-img-desktop img {
    padding-top: 2rem;
}

.banner-hero-img-mobile {
    display: none;
}

.banner-hero-text h1 {
    margin-bottom: 1.5rem;
}

.banner-hero-text p {
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn {
    padding: 1rem;
    border-radius: 2rem;
    max-width: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 500;
    transition: all 0.2s;
}

.contact-btn {
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 0.5rem 1rem;
}

.btn-hero:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.contact-btn:hover {
    color: var(--primary-color);
    border-color: var(--white-color);
    background-color: var(--white-color);
}

.boompe_badges {
    display: flex;
    margin-top: 4rem;
    gap: 2rem;
    width: 80%;
}

.boompe_badges figure {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boompe_badges figcaption {
    font-size: 1.2rem;
}

.boompe_badges figure span {
    font-weight: 700;
}

/* Sessão recursos */

.boompe-catalogo {
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.boompe-resources {
    margin-bottom: 6rem;
}

.boompe-resources p {
    color: var(--secundary-color);
}

.resources-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.resources-card {
    background-color: var(--card-background);
    padding: 1.4rem;
    border-radius: 1.2rem;
    flex: calc(50% - 4rem);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.resources-card:last-child {
    max-width: 50%;
}

.resources-card h3 {
    color: var(--secundary-color);
    font-size: 1.4rem;
}

.resources-card-ico {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    border-radius: 0.6rem;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.resources-card i {
    font-size: 2.5rem;
    color: var(--card-background);
}

.resources-card p {
    font-size: 1.25rem;
}

.resources-slider {
    position: relative;
}

/* Slider */

.swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-slide {
    width: 520px;
    height: 380px;
    border-radius: 8px;
    background: #18212b;
    max-width: calc(100% - 48px);
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--secundary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--secundary-color);
}

/* Sessão Simplifique */

.simplify-section {
    background-image: url("../images/simplify-section.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 7rem 0;
    display: flex;
    justify-content: center;
}

.simplify-section h3 {
    font-size: 2.7rem;
    color: var(--white-color);
    text-align: center;
    max-width: 60%;
}

/* Sessão inteligencia artifical */

.ai-section {
    padding: 5rem 0;
    background-image: url("../images/retag_ai_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: left;
}

.ai-section-content {
    display: flex;
    gap: 2rem;
}

.ai-section-image {
    flex: 1;
}

.ai-section-text {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ai-section-text p {
    margin-bottom: 2rem;
}

.ai-section-image-mobile {
    display: none;
}

/* Conferencia online */

.online-conference {
    padding: 5rem 0;
    background-color: var(--white-bg-color);
}

.online-conference-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.online-conference-text {
    flex: 30;
    display: flex;
    justify-content: center;
    align-items: center;
}

.online-conference-image {
    flex: 70;
}

.online-conference-image figure {
    background-color: white;
    padding: 1.2rem;
    border-radius: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.online-conference-image figure img {
    border-radius: 1rem;
}

.online-conference-image-mobile {
    display: none;
}

/* Perguntas Frequentes */

.perguntas-frequentes {
    background: transparent linear-gradient(277deg, #137fb4 0%, #0f1d53 100%);
    padding-bottom: 5rem;
}

.perguntas-frequentes h2 {
    color: var(--white-color);
}

.faq-content {
    margin-top: 3rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

details {
    background-color: var(--theme-color);
    padding: 2rem;
    border-radius: 1rem;
    user-select: none;
    width: 100%;
    cursor: pointer;
}

summary {
    display: flex;
    justify-content: space-between;
}

summary h3 {
    font-size: 1.4rem;
}

summary span {
    display: flex;
    align-items: center;
}

summary span i {
    transition: all 0.3s;
    font-size: 1.3rem;
}

summary::-webkit-details-marker,
summary::marker {
    display: none !important;
}

details[open] summary span i {
    transform: rotate(180deg);
}

details p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Clientes que Confiam */

.clientes {
    padding: 5rem 0;
    background-image: url("../images/clientes-confianca.png");
    background-repeat: no-repeat;
    background-position-x: -10%;
    background-position-y: bottom;
    background-size: 45%;
}

.clientes-content {
    display: flex;
    gap: 2rem;
}

.clientes-text {
    flex: 50;
}

.clientes-cards-container {
    flex: 50;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.clientes-card {
    background-color: var(--white-bg-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    flex: 1 1 calc(50% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10rem;
}

.clientes-card img {
    width: 10rem;
}

.clientes-image {
    display: none;
}

/* Contato */

.contact {
    padding: 5rem 0;
    background: linear-gradient(56deg, #0f1d53 0%, #137fb4 100%);
}

.contanct-content {
    display: flex;
    gap: 2rem;
}

.contact-text {
    flex: 30%;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text h2 {
    color: var(--white-color);
}

.contact-form-box {
    flex: 70%;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--white-color);
    box-shadow: 0px 0px 20px #0000001a;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    flex: calc(50% - 1rem);
}

.contact-form label span {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-family);
}

.contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/chevron-down-solid.svg") no-repeat 95% center;
    background-color: #f8f8f8;
    background-size: 4%;
}

.contact-form input:focus-visible {
    border: none;
}

.contact-form .msg {
    display: none;
}

.has-error .msg {
    color: #de0e0e;
    font-size: 0.875rem;
    display: block;
}

.has-error .form-control,
.form-group.has-error .controls input[name="password"] + span {
    border: 2px solid #ead3d3 !important;
    background-color: #ffe8e8 !important;
}

.submit-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex: calc(50% - 1rem);
}

.grecaptcha {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.submit-form {
    background-color: var(--secundary-color);
    color: var(--white-color);
    transition: background-color 0.3s ease-in-out;
}

.submit-form:hover {
    background-color: var(--primary-color);
}

.contact-whats-content {
    margin-top: 2rem;
}

.contact-whats-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    gap: 0.5rem;
    font-size: 1.3rem;
}

.contact-whats-btn svg {
    width: 2.3rem;
    height: auto;
}

/* Footer */

footer {
    background-color: var(--white-bg-color);
    padding: 0rem;
}

.footer-content {
    display: flex;
}

address {
    flex: 70%;
    display: flex;
    flex-direction: column;
    font-style: normal;
}

address p,
.social-footer p {
    font-size: 1rem;
}

address a {
    color: var(--secundary-color);
}

address a:hover {
    color: var(--primary-color);
}

.social-footer {
    flex: 30%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.social-footer ul {
    display: flex;
    gap: 1rem;
}

.social-footer li {
    list-style: none;
    display: flex;
    color: var(--secundary-color);
    font-size: 2rem;
    margin-bottom: 0;
}

.social-footer li a {
    color: var(--secundary-color);
    transition: 0.3s all;
}

.social-footer li a:hover {
    color: var(--primary-color);
}

/* Estilo para rodape-sessao-one */
.rodape-sessao-one {
    background: #030d33;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem;
}

.sessao-one,
.sessao-two {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.sessao-one p,
.sessao-two p {
    margin: 1.25rem 0 1rem;
    font-weight: bold;
    color: var(--white-color);
}

.sessao-one ul,
.sessao-two ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sessao-one ul li,
.sessao-two ul li {
    margin: 0.625rem 0;
    text-align: left;
    letter-spacing: 0.0225rem;
    color: var(--white-color);
}

.sessao-one ul li a,
.sessao-two ul li a {
    color: var(--white-color);
    text-decoration: none;
}

/* Hover nos itens do menu */
.sessao-one ul li a:hover,
.sessao-two ul li a:hover {
    color: var(--primary-color);
}

/* Ajuste de distância entre as DIVs */
.sessao-one,
.sessao-two,
.social-footer {
    margin-bottom: 1.875rem;
}

.footer-menu1 li:nth-of-type(2) {
    margin-top: 0.625rem;
}

.footer-menu1 li:nth-of-type(3) {
    margin-top: 0.625rem;
    margin-bottom: 0rem;
}

/* Estilo para o social-footer */
.social-footer {
    margin: 1.25rem 0 0.625rem;
    text-align: left;
}

.social-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.625rem;
}

.social-footer p {
    margin: 0.625rem 0;
}

.social-footer ul li a {
    color: var(--white-color);
    font-size: 1em;
    padding: 0.625rem;
    text-decoration: none;
}

.rodape-sessao-two {
    background-color: #dee2e6;
    text-align: center;
    padding: 2.09375rem 0 2.15625rem;
    color: #001563;
}

.rodape-sessao-two address {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.rodape-sessao-two address p:first-of-type {
    margin-bottom: 0.5rem;
}

.rodape-sessao-one .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.sessao-one,
.sessao-two,
.social-footer {
    flex: 1;
    min-width: 12.5rem;
}

.social-footer {
    flex: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.social-footer p {
    margin: 0rem;
    font-weight: normal;
    font-size: 1.3rem;
    color: var(--white-color);
}

.social-footer ul {
    display: flex;
    gap: 0rem;
}

.social-footer li {
    list-style: none;
    display: flex;
    color: var(--secundary-color);
    font-size: 2rem;
    margin-bottom: 0;
}

.social-footer li a {
    color: var(--secundary-color);
    transition: 0.3s all;
}

/* Centralização responsiva */
@media screen and (max-width: 800px) {
    .rodape-sessao-one {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sessao-one,
    .sessao-two,
    .footer-menu2,
    .social-footer {
        align-items: center;
        text-align: center;
        margin: 0rem;
    }

    .social-footer ul {
        justify-content: center;
    }

    .sessao-one ul li,
    .sessao-two ul li {
        margin: 0.625rem 0;
        text-align: center;
        letter-spacing: 0.0225rem;
        color: var(--white-color);
    }
}

/* helpers */

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.main-page {
    background-color: var(--white-color);
}

.wave-one {
    background-image: url("../images/bg_wave_one.svg");
    background-repeat: no-repeat;
    min-height: 5.5rem;
    background-size: 100%;
}

.wave-two {
    background-image: url("../images/bg_wave_two.svg");
    background-repeat: no-repeat;
    min-height: 15rem;
    background-size: 100%;
}

.page-header,
.page-header-inverse {
    background-image: url("../images/banner_hero_background.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 8rem;
    position: relative;
}

.page-header {
    min-height: 350px;
}

.page-header-inverse {
    min-height: 240px;
}

.page-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-image: url("../images/bg_wave_one.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.page-header-inverse::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-image: url("../images/bg_wave_one.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    transform: scalex(-1);
}

.limiter-no-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Btn whats flutuante */

#robbu-whatsapp-button {
    width: 80px !important;
    height: 80px !important;
    z-index: 9999 !important;
}

#robbu-whatsapp-button > img {
    display: block;
    width: 45px !important;
    height: auto !important;
}

/* Pagina Planos */

.page-header h1 {
    color: var(--white-color);
    margin-bottom: 3rem;
}

.plano-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.plano-text {
    flex: 50%;
}

.plano-image {
    flex: 50%;
}

.plano-image-mobile {
    display: none;
}

.title-page {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-page {
    margin-bottom: 1.5rem;
}

/* Sessao consultor */

.consultor {
    padding-top: 5rem;
    background: linear-gradient(56deg, #0f1d53 0%, #137fb4 100%);
}

.consultor-content {
    display: flex;
    gap: 2rem;
}

.consultor-text {
    flex: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultor-text h3 {
    color: var(--white-color);
}

.consultor-image {
    flex: 60%;
    display: flex;
    justify-content: center;
}

/* Pagina Quem somos */

.quem-somos {
    margin-top: -6rem;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.quem-somos-content {
    display: flex;
    gap: 1rem;
}

.quem-somos-image {
    flex: 50%;
}

.quem-somos-image img {
    border-radius: 1.2rem;
}

.quem-somos-text {
    flex: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.quem-somos-btn {
    transition: background-color 0.2s all;
}

.quem-somos-btn:hover {
    background-color: var(--secundary-color);
    color: var(--white-color);
}

/* Card missao */

.nossa-missao {
    position: relative;
}

.card-missao {
    position: absolute;
    background-color: var(--white-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 35rem;
    right: 10%;
    bottom: -120px;
    box-shadow: 0px 0px 15px #0000001f;
    display: flex;
    align-items: center;
}

.card-missao h3 {
    margin-bottom: 1rem;
}

.card-missao p {
    font-size: 1.2rem;
}

.card-missao i {
    font-size: 5rem;
}

/* Acreditamos Sessao */

.acreditamos {
    background: linear-gradient(272deg, #e46b14 0%, #ffaa00 100%);
    padding: 5rem 0;
    color: var(--white-color);
}

.acreditamos h2 {
    color: var(--white-color);
}

/* Equipe */

.equipe {
    padding: 5rem 0;
}

.equipe h2 {
    color: var(--secundary-color);
}

.equipe p {
    margin-bottom: 2rem;
}

/* Apresentacao */

.apresentacao {
    background-image: url("../images/apresentacao.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.apresentacao-content {
    display: flex;
    justify-content: center;
}

.apresentacao-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.apresentacao-text .limiter-no-container {
    gap: 0;
}

.apresentacao-text h2 {
    color: var(--secundary-color);
}

.apresentacao-text p {
    margin-bottom: 1rem;
    text-align: center;
}

.apresentacao-btn {
    transition: background-color 0.2s all;
}

.apresentacao-btn:hover {
    background-color: var(--primary-color);
}

/* Medias Queries */

@media (max-width: 1440px) {
    .boompe_badges {
        width: 100%;
    }

    /* Clientes que Confiam */

    .clientes {
        background-size: 50%;
    }

    /* Quem somos */

    .quem-somos {
        margin-top: -7rem;
    }
}

@media (max-width: 1024px) {
    /* Clientes que Confiam */

    .clientes {
        background-position-x: -30%;
        background-position-y: bottom;
        background-size: 65%;
    }

    /* Quem somos */

    .quem-somos {
        margin-top: 0rem;
    }

    /* Missao */

    .nossa-missao {
        padding: 4rem;
    }

    .card-missao {
        bottom: -70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu {
        display: flex;
        justify-content: center;
        font-size: 1.6rem;
        line-height: normal;
        background-color: transparent;
        border: none;
        color: var(--white-color);
        z-index: 9;
    }

    .header-content {
        z-index: 9;
        position: relative;
    }

    .header-logo {
        z-index: 9;
    }

    .header-logo img {
        height: 2rem;
    }

    .nav-menu {
        position: fixed;
        background-color: var(--secundary-color);
        width: 100%;
        top: 0;
        left: 0;
        height: 100vh;
        flex-direction: column;
        align-items: start;
        padding: 9rem 2rem 6rem;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
        transform: translateX(-100%);
        opacity: 0;
    }

    .nav-menu.menu-open {
        transform: translateX(0);
        opacity: 1;
    }

    .contact-btn {
        max-width: 100%;
        width: 100%;
    }

    .banner-hero-content {
        flex-direction: column;
    }

    .banner-hero-text {
        gap: 2rem;
    }

    .btn-hero {
        margin: 0 auto;
        width: 16rem;
    }

    .banner-hero-text p {
        color: var(--secundary-color);
        font-weight: 500;
        margin-bottom: 0;
    }

    .banner-hero-img-mobile {
        display: flex;
        justify-content: center;
    }

    .banner-hero-img-desktop {
        display: none;
    }

    .boompe_badges {
        margin-top: 2rem;
    }

    .boompe_badges figcaption {
        color: var(--secundary-color);
    }

    /* sessão recursos */

    .boompe-catalogo {
        margin-top: 32rem;
    }

    .resources-content {
        gap: 1.2rem;
    }

    .resources-card {
        flex: 100%;
    }

    .resources-card:last-child {
        max-width: unset;
    }

    /* sessão simplifique */

    .simplify-section h3 {
        max-width: 100%;
    }

    /* Sessão inteligencia artifical */

    .ai-section {
        background-image: none;
    }

    .ai-section .container {
        padding: 0;
    }

    .ai-section-content {
        flex-direction: column;
    }

    .ai-section-image {
        display: none;
    }

    .ai-section-image-mobile {
        display: block;
    }

    .ai-section-text h2,
    .ai-section-text p {
        padding: 0 1.5rem;
    }

    .ai-section-text ul {
        margin: 0 2rem;
    }

    /* Conferencia online */

    .online-conference-image {
        display: none;
    }

    .online-conference-image-mobile {
        display: block;
        margin-top: 2rem;
        padding: 0.8rem;
        background-color: white;
        border-radius: 0.5rem;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .online-conference-image-mobile img {
        border-radius: 0.5rem;
    }

    /* Perguntas Frequentes */

    .wave-two {
        min-height: 8rem;
    }

    /* Clientes */

    .clientes {
        background-image: none;
    }

    .clientes-content {
        flex-direction: column;
    }

    .clientes-image {
        display: block;
    }

    /* Contato */

    .contact-form-box {
        padding: 1.5rem;
    }

    .contanct-content {
        flex-direction: column;
    }

    .contact-form form {
        flex-direction: column;
        gap: 1.2rem;
    }

    .contact-form label {
        flex: 100%;
        width: 100%;
    }

    .contact-whats-content {
        text-align: center;
    }

    /* footer */

    .footer-content {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .social-footer {
        flex: 100%;
        width: 100%;
        align-items: center;
    }

    /* consultor */

    .consultor {
        padding: 5rem 0;
    }

    .consultor-content {
        flex-direction: column;
        gap: 2rem;
    }

    .consultor-text h3 {
        text-align: center;
    }

    /* Pagina Planos */

    .plano-content {
        flex-direction: column;
    }

    .plano-image {
        display: none;
    }

    .plano-image-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        position: relative;
        margin-top: 3rem;
    }

    /* Quem somos */

    .quem-somos {
        margin-top: 2rem;
    }

    .quem-somos-content {
        flex-direction: column;
    }

    .quem-somos-image {
        display: none;
    }

    .limiter-no-container {
        width: 100%;
        padding: 0 1.5rem;
    }

    /* Missao */

    .nossa-missao {
        padding: 3rem;
    }

    .card-missao {
        left: 50%;
        bottom: -95px;
        right: 0;
        transform: translate(-50%);
        width: 90%;
        padding: 1.5rem;
    }

    .acreditamos {
        padding-top: 8rem;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2.3rem;
    }

    p {
        font-size: 1.3rem;
    }

    .banner-hero {
        padding: 5rem 0 2rem;
        max-height: 700px;
    }

    .banner-hero-text {
        margin-top: 5rem;
    }

    .banner-hero-text p {
        margin-top: 5rem;
        font-size: 1.2rem;
    }

    .boompe_badges {
        margin-top: 1rem;
        gap: 1rem;
    }

    .boompe_badges figure {
        gap: 0.5rem;
    }

    .boompe_badges figcaption {
        font-size: 1rem;
    }

    /* Quem somos */

    .quem-somos {
        margin-top: 0rem;
        padding-top: 3rem;
    }

    /* Boompe recursos */

    .boompe-catalogo {
        margin-top: 30rem;
    }

    .resources-card {
        flex: 1;
    }

    /* Sessão simplifica */

    .simplify-section h3 {
        font-size: 2.1rem;
    }

    /* Perguntas Frequentes */

    .wave-two {
        min-height: 6rem;
    }

    /* Clientes */

    .clientes-card {
        flex: 100%;
        width: 100%;
    }

    /* missao */

    .card-missao i {
        font-size: 4rem;
    }

    .card-missao p {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .banner-hero {
        padding: 0;
        max-height: 615px;
    }

    .boompe-catalogo {
        margin-top: 34rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 1.1rem;
    }

    .boompe_badges figcaption {
        font-size: 0.8rem;
    }

    .boompe_badges img {
        height: 3rem;
    }

    .boompe-catalogo {
        margin-top: 36rem;
    }

    .resources-card {
        width: 100%;
        flex-direction: column;
    }

    .resources-card-text {
        text-align: center;
    }
}

.plan-title {
    text-align: center;

    h1 {
        margin-bottom: 12px;
    }

    p {
        font-size: 1.2rem;
        color: #fff;
    }
}

.plan-cards-content {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.plan-card {
    text-align: center;
    flex: 50%;
    height: 100%;

    .plan-card-type {
        color: #fff;
        display: block;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .card-box {
        padding: 2rem;
        border-radius: 16px;
        background-color: #fff;

        .user-limit {
            font-size: 1.2rem;
            color: #001257;
            font-weight: 600;
            display: block;
            margin-bottom: 2rem;
        }

        .mensal {
            margin-bottom: 1.8rem;

            .small {
                color: #929292;
                font-size: 1.1rem;
            }

            .number {
                font-size: 2.8rem;
                font-weight: bold;
                color: #151824;
                margin-left: 0.6rem;
            }
        }

        .anual {
            .string {
                color: #929292;
                font-size: 0.8rem;
                margin-right: 0.4rem;
            }

            .small {
                color: #929292;
                font-size: 0.8rem;
            }

            .number {
                font-size: 1.8rem;
                color: #929292;
                font-weight: bold;
            }
        }

        .button {
            background-color: #001563;
            padding: 16px 16px;
            font-size: 1.3rem;
            font-weight: bold;
            color: #fff;
            border-radius: 50px;
            width: 100%;
            text-align: center;
            margin-bottom: 2rem;
        }
    }
}

.plan-card.principal {
    .card-box {
        background-color: #001257;

        .user-limit {
            color: #fff;
        }

        .mensal,
        .anual {
            .string,
            .small,
            .number {
                color: #fff;
            }
        }

        .button {
            background-color: #fff;
            color: #001563;
        }
    }
}

@media (max-width: 1200px) {
    .plan-card .card-box .mensal .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 1000px) {
    .plan-card .card-box {
        padding: 1.2rem;
    }

    .plan-card .card-box .mensal .number {
        font-size: 2rem;
    }
    .plan-card .card-box .anual .number {
        font-size: 1.2rem;
    }
}

@media (min-width: 767px) {
    .page-header.planos-header {
        min-height: 730px;
    }

    .plan-card .card-box {
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (min-width: 1000px) {
    .page-header.planos-header {
        min-height: 830px;
    }

    .plan-card .card-box {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .page-header.planos-header {
        min-height: 1450px;
    }

    .plan-cards-content {
        flex-direction: column;
    }

    .plan-card {
        flex: 100%;
    }

    .plan-card .card-box .mensal .number {
        font-size: 3rem;
    }
    .plan-card .card-box .anual .number {
        font-size: 2rem;
    }
}

@media (max-width: 440px) {
    .page-header.planos-header {
        min-height: 1700px;
    }

    .banner-hero-text {
        margin-top: 60px;
    }
}

@media (max-width: 376px) {
    .banner-hero-text {
        margin-top: 150px;
    }
}

.languages-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.8rem;

    .languages-box {
        display: flex;
        gap: 1rem;
        padding: 0.4rem 0.8rem;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 20px;

        .laguage-ico,
        a {
            display: inline-block;
            width: 24px;
            height: 24px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

header.active {
    .languages-row {
        display: none;
    }
}

.table-boompe-pro {
    width: 100%;
}

.table-boompe-pro thead {
    background-color: var(--primary-color);
}

.table-boompe-pro thead th {
    padding: 2rem 4rem;
    text-align: center;
    color: var(--button-text-color);
    font-size: 1.4rem;
    font-weight: 400;
    border-radius: 1rem 1rem 0 0;
}

.table-boompe-pro thead th p {
    margin: 0;
    line-height: normal;
}

.table-info-title {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
}

.table-boompe-pro thead th:first-child {
    text-align: left;
}

.table-boompe-pro thead th:nth-child(2) {
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
}

.table-boompe-pro tbody {
    background-color: var(--card-background);
}

.table-boompe-pro tbody tr th {
    padding: 1rem 4rem;
    border-top: none;
    color: var(--secundary-color);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.table-boompe-pro tbody tr th i {
    font-size: 1.3rem;
}

.table-boompe-pro tbody tr th:first-child {
    text-align: left;
    font-weight: 500;
}

.table-boompe-pro tbody tr:last-child th {
    border-radius: 0 0 1rem 1rem;
}

.table-boompe-pro .boompe-pro {
    color: #4aae4e;
}

.table-boompe-pro .boompe-free {
    color: #e94539;
}

@media (max-width: 768px) {
    .table-boompe-pro thead th,
    .table-boompe-pro tbody tr th {
        padding: 1rem;
    }

    .table-boompe-pro tbody tr th i,
    .table-boompe-pro tbody tr th,
    .table-info-title {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .table-boompe-pro thead th,
    .table-boompe-pro tbody tr th {
        padding: 0.5rem;
    }

    .table-boompe-pro tbody tr th i,
    .table-boompe-pro tbody tr th,
    .table-info-title {
        font-size: 0.9rem;
    }
}

.table-box {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.boompe-catalogo {
    h2 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .boompe-catalogo-image {
        position: relative;
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
        }

        .ico-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 8px solid #fff;
            width: 160px;
            height: 160px;
            min-width: 160px;
            min-height: 160px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;

            i {
                font-size: 5rem;
                color: #fff;
                transition: 0.3s;
            }
        }

        &:hover {
            .ico-play {
                width: 172px;
                height: 172px;
                min-width: 172px;
                min-height: 172px;

                i {
                    font-size: calc(5rem + 12px);
                }
            }
        }
    }
}

@media (max-width: 992px) {
    .boompe-catalogo {
        .boompe-catalogo-image {
            .ico-play {
                width: 120px;
                height: 120px;
                min-width: 120px;
                min-height: 120px;
                border-width: 5px;

                i {
                    font-size: 3.5rem;
                }
            }

            &:hover {
                .ico-play {
                    width: 132px;
                    height: 132px;
                    min-width: 132px;
                    min-height: 132px;

                    i {
                        font-size: calc(3.5rem + 12px);
                    }
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .boompe-catalogo {
        .boompe-catalogo-image {
            .ico-play {
                width: 90px;
                height: 90px;
                min-width: 90px;
                min-height: 90px;
                border-width: 4px;

                i {
                    font-size: 2.5rem;
                }
            }

            &:hover {
                .ico-play {
                    width: 102px;
                    height: 102px;
                    min-width: 102px;
                    min-height: 102px;

                    i {
                        font-size: calc(2.5rem + 12px);
                    }
                }
            }
        }
    }
}

@media (max-width: 500px) {
    .boompe-catalogo {
        .boompe-catalogo-image {
            .ico-play {
                width: 60px;
                height: 60px;
                min-width: 60px;
                min-height: 60px;

                i {
                    font-size: 2rem;
                }
            }

            &:hover {
                .ico-play {
                    width: 72px;
                    height: 72px;
                    min-width: 72px;
                    min-height: 72px;

                    i {
                        font-size: calc(2rem + 12px);
                    }
                }
            }
        }
    }
}

.boompe-resources .slider-title {
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 767px) {
    .gdesc-inner {
        .gslide-title {
            height: 60px;
            overflow-y: auto;
            padding-right: 12px;
        }
    }
}
