.elementor-11 .elementor-element.elementor-element-dc76a51{width:var( --container-widget-width, 110.62% );max-width:110.62%;--container-widget-width:110.62%;--container-widget-flex-grow:0;}.elementor-11 .elementor-element.elementor-element-dc76a51.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-dc76a51 *//* =====================================================
   SITE INTELIGENTE
   HERO — CSS COMPLETO
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue: #0062FE;
    --blue-light: #1677FF;
    --blue-dark: #003DA8;

    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5D;

    --background: #000511;
    --background-light: #050B18;

    --white: #FFFFFF;
    --text: #F5F7FA;
    --text-muted: #A7AFBF;

    --border: rgba(255, 255, 255, 0.10);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --container: 1200px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Poppins", sans-serif;

    background: var(--background);

    color: var(--text);

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    background:

        radial-gradient(
            circle at 80% 45%,
            rgba(0, 98, 254, 0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(0, 98, 254, 0.06),
            transparent 30%
        ),

        var(--background);

    overflow: hidden;
}


/* =====================================================
   BACKGROUND GRID
===================================================== */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.8),
            transparent 90%
        );

    pointer-events: none;
}


/* =====================================================
   GLOWS
===================================================== */

.hero-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: var(--blue);

    filter: blur(160px);

    opacity: 0.08;

    pointer-events: none;
}


.hero-glow-left {

    top: 20%;
    left: -300px;
}


.hero-glow-right {

    right: -250px;
    bottom: 0;
}


/* =====================================================
   CONTAINER
===================================================== */

.hero-container {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.hero-header {

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);
}


/* =====================================================
   BRAND — LOGO REAL
===================================================== */

.brand {

    width: 155px;
    height: 52px;

    display: flex;

    align-items: center;

    overflow: hidden;

    flex-shrink: 0;
}


/*
   A imagem original é quadrada e possui espaço
   vazio ao redor da logo.

   O object-fit: cover faz o recorte automático
   somente nessa área do header.

   Assim a logo fica visualmente horizontal,
   sem alterar o arquivo original.
*/

.brand-logo {

    width: 155px;
    height: 52px;

    display: block;

    object-fit: cover;

    object-position: center;

    max-width: none;

    flex-shrink: 0;
}


/* =====================================================
   HEADER BUTTON
===================================================== */

.header-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 10px;

    background: var(--whatsapp);

    color: #061108;

    font-size: 13px;

    font-weight: 700;

    transition:

        transform 0.2s ease,

        background 0.2s ease,

        box-shadow 0.2s ease;
}


.header-button:hover {

    background: var(--whatsapp-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.18);
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    /*
       REMOVIDO:
       left: var(--border-inline-end-width);
       top: -32px;

       Esses valores estavam deslocando
       o conteúdo do Hero sem necessidade.
    */

    min-height: calc(100vh - 92px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;

    padding: 70px 0 90px;
}


/* =====================================================
   HERO COPY
===================================================== */

.hero-copy {

    max-width: 650px;
}


/* =====================================================
   BADGE
===================================================== */

.hero-badge {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: var(--white);

    font-size: 11px;

    font-weight: 500;
}


.hero-badge span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 12px rgba(0,98,254,0.8);
}


/* =====================================================
   TITLE
===================================================== */

.hero h1 {

    max-width: 700px;

    font-size: clamp(
        42px,
        5vw,
        70px
    );

    line-height: 1.03;

    letter-spacing: -0.045em;

    font-weight: 700;

    color: var(--white);
}


.hero h1 span {

    color: var(--blue);

    text-shadow:
        0 0 35px rgba(0, 98, 254, 0.22);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width: 590px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;
}


.hero-description strong {

    color: var(--white);
}


/* =====================================================
   PROCESS
===================================================== */

.hero-process {

    display: flex;

    align-items: center;

    margin-top: 32px;

    gap: 12px;
}


.process-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #D9DFEA;

    font-size: 11px;

    font-weight: 500;
}


.process-number {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;
}


.process-line {

    width: 22px;

    height: 1px;

    background:
        rgba(255,255,255,0.15);
}


/* =====================================================
   OFFER
===================================================== */

.hero-offer {

    width: fit-content;

    margin-top: 35px;

    padding: 18px 22px;

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius:
        var(--radius-md);

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,0.20);
}


.offer-label {

    margin-bottom: 3px;

    color: #8D96A8;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.12em;
}


.offer-price {

    display: flex;

    align-items: flex-start;

    line-height: 1;
}


.offer-price small {

    margin-top: 7px;

    margin-right: 5px;

    color: var(--white);

    font-size: 14px;

    font-weight: 600;
}


.offer-price strong {

    color: var(--white);

    font-size: 48px;

    font-weight: 700;

    letter-spacing: -0.04em;
}


.offer-deadline {

    margin-top: 5px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   CTA
===================================================== */

.hero-actions {

    margin-top: 22px;
}


.whatsapp-button {

    min-height: 58px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    padding: 0 27px;

    border-radius: 12px;

    background: var(--whatsapp);

    color: #061108;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.15);

    transition:

        transform 0.2s ease,

        background 0.2s ease,

        box-shadow 0.2s ease;
}


.whatsapp-button:hover {

    background: var(--whatsapp-dark);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.22);
}


.whatsapp-button:active {

    transform: translateY(0);
}


.whatsapp-icon {

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.whatsapp-icon svg {

    width: 20px;
    height: 20px;

    fill: currentColor;
}


/* =====================================================
   TRUST
===================================================== */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 17px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #7F899B;

    font-size: 10px;

    font-weight: 500;
}


.trust-item span {

    color: var(--whatsapp);

    font-weight: 700;
}


/* =====================================================
   HERO VISUAL
   PONTO 2
===================================================== */

.hero-visual {

    position: relative;

    width: 100%;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;
}


/* =====================================================
   ORBIT
===================================================== */

.visual-orbit {

    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    border:
        1px solid rgba(0, 98, 254, 0.15);

    box-shadow:
        0 0 100px rgba(0, 98, 254, 0.08);
}


.visual-orbit::before {

    content: "";

    position: absolute;

    inset: 45px;

    border-radius: 50%;

    border:
        1px solid rgba(0, 98, 254, 0.08);
}


/* =====================================================
   MAIN VISUAL CARD
===================================================== */

.visual-card-main {

    position: relative;

    z-index: 3;

    width: 370px;

    padding: 10px;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.025)
        );

    box-shadow:

        0 40px 100px rgba(0,0,0,0.5),

        0 0 80px rgba(0,98,254,0.10);

    transform:

        perspective(1000px)
        rotateY(-8deg)
        rotateX(3deg);

    backdrop-filter: blur(20px);
}


/* =====================================================
   CARD TOP
===================================================== */

.card-top {

    height: 25px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 7px;
}


.card-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.3);
}


/* =====================================================
   FAKE PAGE
===================================================== */

.fake-page {

    min-height: 440px;

    padding: 32px 30px;

    border-radius: 12px;

    background:

        linear-gradient(
            145deg,
            #0A1120,
            #030713
        );

    border:
        1px solid rgba(255,255,255,0.07);
}


/* =====================================================
   FAKE LOGO
===================================================== */

.fake-logo {

    color: var(--white);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.05em;
}


.fake-logo strong {

    color: var(--blue);
}


/* =====================================================
   FAKE TITLE
===================================================== */

.fake-title {

    max-width: 280px;

    margin-top: 70px;

    color: var(--white);

    font-size: 31px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.035em;
}


/* =====================================================
   FAKE TEXT
===================================================== */

.fake-text {

    width: 230px;

    height: 7px;

    margin-top: 25px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.12);
}


.fake-text.short {

    width: 170px;

    margin-top: 8px;
}


/* =====================================================
   FAKE BUTTON
===================================================== */

.fake-button {

    width: 145px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 28px;

    border-radius: 8px;

    background: var(--whatsapp);

    color: #061108;

    font-size: 10px;

    font-weight: 700;
}


/* =====================================================
   FAKE STATS
===================================================== */

.fake-stats {

    display: flex;

    gap: 10px;

    margin-top: 65px;
}


.fake-stats > div {

    flex: 1;

    padding: 13px;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 8px;

    background:
        rgba(255,255,255,0.025);
}


.fake-stats strong {

    display: block;

    color: var(--blue);

    font-size: 18px;
}


.fake-stats span {

    color: #737D90;

    font-size: 8px;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    background:
        rgba(7, 13, 26, 0.85);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}


.floating-icon {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(0, 98, 254, 0.13);

    color: var(--blue);

    font-size: 15px;

    font-weight: 700;
}


.floating-card strong {

    display: block;

    color: var(--white);

    font-size: 11px;

    font-weight: 600;
}


.floating-card small {

    display: block;

    margin-top: 2px;

    color: #747E91;

    font-size: 8px;
}


/* =====================================================
   CARD ONE
===================================================== */

.card-one {

    top: 90px;

    left: 5px;

    transform: rotate(-4deg);
}


/* =====================================================
   CARD TWO
===================================================== */

.card-two {

    right: -5px;

    bottom: 100px;

    transform: rotate(4deg);
}


/* =====================================================
   BLUE LINE
===================================================== */

.visual-blue-line {

    position: absolute;

    width: 120px;

    height: 1px;

    right: 30px;

    top: 65px;

    background: var(--blue);

    box-shadow:
        0 0 20px rgba(0,98,254,0.8);

    transform: rotate(-30deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .hero-content {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);

        gap: 40px;
    }


    .hero h1 {

        font-size: clamp(
            42px,
            5vw,
            60px
        );
    }


    .visual-card-main {

        width: 330px;
    }


    .visual-orbit {

        width: 420px;
        height: 420px;
    }


    .floating-card {

        transform: scale(0.9);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .hero-container {

        width:
            min(
                calc(100% - 32px),
                var(--container)
            );
    }


    /* HEADER */

    .hero-header {

        height: 76px;
    }


    .brand {

        width: 125px;
        height: 44px;
    }


    .brand-logo {

        width: 125px;
        height: 44px;
    }


    .header-button {

        min-height: 40px;

        padding: 0 13px;

        font-size: 10px;
    }


    /* CONTENT */

    .hero-content {

        min-height: auto;

        padding: 48px 0 70px;

        gap: 35px;

        grid-template-columns: 1fr;
    }


    /* TITLE */

    .hero h1 {

        font-size: clamp(
            38px,
            11vw,
            52px
        );

        line-height: 1.02;
    }


    /* DESCRIPTION */

    .hero-description {

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.65;
    }


    /* PROCESS */

    .hero-process {

        flex-wrap: wrap;

        gap: 9px;
    }


    .process-line {

        width: 12px;
    }


    .process-item {

        font-size: 9px;
    }


    /* OFFER */

    .hero-offer {

        margin-top: 28px;

        padding: 15px 18px;
    }


    .offer-price strong {

        font-size: 42px;
    }


    /* CTA */

    .whatsapp-button {

        width: 100%;

        min-height: 56px;

        font-size: 13px;
    }


    /* TRUST */

    .hero-trust {

        gap: 10px 14px;
    }


    .trust-item {

        font-size: 9px;
    }


    /* =================================================
       MOBILE — VISUAL OCULTO
    ================================================= */

    .hero-visual {

        display: none;
    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

a:focus-visible {

    outline:
        2px solid var(--blue);

    outline-offset: 4px;
}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7515024 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 02 — IDENTIFICAÇÃO
   VERSÃO — FUNDO BRANCO
===================================================== */


/* =====================================================
   SECTION
===================================================== */

#problema {
    position: relative;

    top: -13px;

    left: var(--border-right-width);

    padding: 125px 0 135px;

    background: #FFFFFF;

    overflow: hidden;
}


/* =====================================================
   GRID BACKGROUND
===================================================== */

#problema::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            transparent 95%
        );

    pointer-events: none;
}


/* =====================================================
   BLUE GLOW
===================================================== */

.si-problem-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: 25%;

    border-radius: 50%;

    background: #0062FE;

    filter: blur(170px);

    opacity: 0.045;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;
}


/* =====================================================
   SECTION LABEL
   REMOVIDO DO LAYOUT
===================================================== */

.si-problem-heading .si-section-label {
    display: none !important;
}


/* =====================================================
   HEADING
===================================================== */

.si-problem-heading {
    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


/* =====================================================
   TITLE
===================================================== */

.si-problem-heading h2 {
    margin-top: 0;

    color: #0B1220;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-problem-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 30px rgba(
            0,
            98,
            254,
            0.12
        );
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-problem-heading p {
    max-width: 650px;

    margin: 24px auto 0;

    color: #667085;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   CARDS GRID
===================================================== */

.si-problem-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;
}


/* =====================================================
   CARD
===================================================== */

.si-problem-card {
    position: relative;

    min-height: 340px;

    padding: 25px;

    border: 1px solid #E6EAF0;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F8FAFC
        );

    box-shadow:
        0 20px 60px rgba(
            15,
            23,
            42,
            0.06
        );

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =====================================================
   CARD BOTTOM LINE
===================================================== */

.si-problem-card::after {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;

    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                0,
                98,
                254,
                0.55
            ),
            transparent
        );

    opacity: 0;

    transition:
        opacity 0.25s ease;
}


/* =====================================================
   CARD HOVER
===================================================== */

.si-problem-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        0,
        98,
        254,
        0.25
    );

    box-shadow:
        0 28px 70px rgba(
            15,
            23,
            42,
            0.10
        ),
        0 0 35px rgba(
            0,
            98,
            254,
            0.05
        );
}


.si-problem-card:hover::after {
    opacity: 1;
}


/* =====================================================
   CARD TOP
===================================================== */

.si-problem-card-top {
    display: flex;

    align-items: center;

    gap: 12px;
}


.si-problem-number {
    color: #0062FE;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.si-problem-line {
    flex: 1;

    height: 1px;

    background:
        #E4E8EE;
}


/* =====================================================
   ICON
===================================================== */

.si-problem-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 38px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.20
    );

    border-radius: 12px;

    background:
        rgba(
            0,
            98,
            254,
            0.055
        );
}


.si-problem-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #0062FE;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CARD TITLE
===================================================== */

.si-problem-card h3 {
    max-width: 290px;

    margin-top: 27px;

    color: #101828;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    line-height: 1.35;

    letter-spacing: -0.02em;

    font-weight: 600;
}


/* =====================================================
   CARD TEXT
===================================================== */

.si-problem-card p {
    max-width: 310px;

    margin-top: 13px;

    color: #667085;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   BOTTOM CONCLUSION
===================================================== */

.si-problem-bottom {
    display: grid;

    grid-template-columns:
        1fr
        minmax(
            300px,
            570px
        )
        1fr;

    align-items: center;

    gap: 25px;

    margin-top: 65px;
}


.si-problem-bottom-line {
    height: 1px;

    background:
        #E1E6ED;
}


.si-problem-bottom-content {
    text-align: center;
}


/* =====================================================
   BOTTOM LABEL
===================================================== */

.si-bottom-label {
    color: #0062FE;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.12em;
}


/* =====================================================
   BOTTOM TEXT
===================================================== */

.si-problem-bottom p {
    margin-top: 9px;

    color: #667085;

    font-size: 11px;

    line-height: 1.7;
}


.si-problem-bottom strong {
    color: #101828;

    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    #problema {
        top: -13px;
    }

    .si-problem {
        padding: 100px 0 110px;
    }

    .si-problem-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .si-problem-card:last-child {
        grid-column:
            1 / -1;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    #problema {
        top: -13px;
    }

    .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }

    .si-problem {
        padding: 80px 0 90px;
    }


    /* =========================
       HEADING
    ========================== */

    .si-problem-heading {
        margin-bottom: 42px;
    }


    .si-problem-heading h2 {
        margin-top: 0;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-problem-heading p {
        margin-top: 18px;

        font-size: 12px;

        line-height: 1.7;
    }


    /* =========================
       GRID
    ========================== */

    .si-problem-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .si-problem-card:last-child {
        grid-column: auto;
    }


    /* =========================
       CARD
    ========================== */

    .si-problem-card {
        min-height: auto;

        padding: 22px;

        border-radius: 15px;
    }


    .si-problem-icon {
        width: 42px;
        height: 42px;

        margin-top: 28px;
    }


    .si-problem-icon svg {
        width: 19px;
        height: 19px;
    }


    .si-problem-card h3 {
        margin-top: 20px;

        font-size: 16px;
    }


    .si-problem-card p {
        margin-top: 10px;

        font-size: 11px;

        line-height: 1.7;
    }


    /* =========================
       CONCLUSION
    ========================== */

    .si-problem-bottom {
        grid-template-columns: 1fr;

        gap: 17px;

        margin-top: 45px;
    }


    .si-problem-bottom p {
        font-size: 10px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-problem-card {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79c7bd6 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 03 — PARA QUEM É / NÃO É
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.si-audience {
    position: relative;

    padding: 125px 0 135px;

    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(0, 98, 254, 0.08),
            transparent 30%
        ),
        #000511;

    overflow: hidden;
}


/* =====================================================
   GRID BACKGROUND
===================================================== */

.si-audience::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.9),
            transparent 96%
        );

    pointer-events: none;
}


/* =====================================================
   GLOW
===================================================== */

.si-audience-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    left: -260px;
    top: 35%;

    border-radius: 50%;

    background: #0062FE;

    filter: blur(160px);

    opacity: 0.055;

    pointer-events: none;
}


/* =====================================================
   HEADING
===================================================== */

.si-audience-heading {
    position: relative;

    z-index: 2;

    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


/* =====================================================
   SECTION LABEL
   REMOVIDO CONFORME SOLICITADO
===================================================== */

.si-audience-heading .si-section-label {
    display: none !important;
}


/* =====================================================
   TITLE
===================================================== */

.si-audience-heading h2 {
    /*
       Como o label foi removido,
       o título não precisa reservar
       espaço para ele.
    */
    margin-top: 0;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}

.si-audience-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 35px rgba(
            0,
            98,
            254,
            0.20
        );
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-audience-heading p {
    max-width: 650px;

    margin: 24px auto 0;

    color: #8D98AB;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   GRID
===================================================== */

.si-audience-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 15px;

    max-width: 930px;

    margin: 0 auto;
}


/* =====================================================
   CARD
===================================================== */

.si-audience-card {
    position: relative;

    padding: 28px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.10
    );

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 25px 70px rgba(
            0,
            0,
            0,
            0.20
        );

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =====================================================
   BLUE TOP ACCENT
===================================================== */

.si-audience-card--yes::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #0062FE,
            transparent
        );

    opacity: 0.65;
}


/* =====================================================
   CARD HOVER
===================================================== */

.si-audience-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        0,
        98,
        254,
        0.28
    );

    box-shadow:
        0 30px 80px rgba(
            0,
            0,
            0,
            0.30
        ),
        0 0 45px rgba(
            0,
            98,
            254,
            0.05
        );
}


/* =====================================================
   CARD HEADER
===================================================== */

.si-audience-card-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );
}


/* =====================================================
   STATUS
===================================================== */

.si-audience-status {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #8E99AC;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.09em;
}

.si-audience-card--yes
.si-audience-status {
    color: #A7B4C8;
}


/* =====================================================
   STATUS DOT
===================================================== */

.si-status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #0062FE;

    box-shadow:
        0 0 12px rgba(
            0,
            98,
            254,
            0.8
        );
}


/* =====================================================
   NUMBER
===================================================== */

.si-audience-number {
    color: #465267;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


/* =====================================================
   CARD TITLE
===================================================== */

.si-audience-card h3 {
    max-width: 390px;

    margin-top: 30px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    line-height: 1.35;

    letter-spacing: -0.025em;

    font-weight: 600;
}


/* =====================================================
   LIST
===================================================== */

.si-audience-list {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 28px;

    padding: 0;

    list-style: none;
}


/* =====================================================
   LIST ITEM
===================================================== */

.si-audience-list li {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


/* =====================================================
   CHECK / X
===================================================== */

.si-check {
    flex: 0 0 25px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.28
    );

    border-radius: 8px;

    background:
        rgba(
            0,
            98,
            254,
            0.07
        );

    color: #0062FE;

    font-size: 13px;

    font-weight: 700;

    line-height: 1;
}


/* =====================================================
   TEXT
===================================================== */

.si-audience-list p {
    margin: 2px 0 0;

    color: #7E899C;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   TRANSITION
===================================================== */

.si-audience-transition {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        minmax(
            300px,
            600px
        )
        1fr;

    align-items: center;

    gap: 24px;

    max-width: 900px;

    margin: 60px auto 0;
}


.si-audience-transition > span {
    height: 1px;

    background:
        rgba(
            255,
            255,
            255,
            0.09
        );
}


.si-audience-transition p {
    margin: 0;

    text-align: center;

    color: #7F899B;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.7;
}


.si-audience-transition strong {
    color: #FFFFFF;

    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .si-audience {
        padding: 100px 0 110px;
    }

    .si-audience-grid {
        grid-template-columns: 1fr;

        max-width: 620px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }

    .si-audience {
        padding: 80px 0 90px;
    }


    /* HEADING */

    .si-audience-heading {
        margin-bottom: 42px;
    }

    .si-audience-heading h2 {
        margin-top: 0;

        font-size: 34px;

        line-height: 1.07;
    }

    .si-audience-heading p {
        margin-top: 18px;

        font-size: 12px;

        line-height: 1.7;
    }


    /* CARDS */

    .si-audience-card {
        padding: 22px;

        border-radius: 15px;
    }

    .si-audience-card h3 {
        margin-top: 23px;

        font-size: 17px;
    }

    .si-audience-list {
        gap: 15px;

        margin-top: 23px;
    }

    .si-audience-list p {
        font-size: 11px;
    }


    /* TRANSITION */

    .si-audience-transition {
        grid-template-columns: 1fr;

        gap: 17px;

        margin-top: 45px;
    }

    .si-audience-transition p {
        font-size: 10px;
    }

}


/* =====================================================
   ACCESSIBILITY / REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-audience-card {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-94084a3 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 04 — A SOLUÇÃO
   FUNDO BRANCO
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.si-solution {
    position: relative;

    padding: 125px 0 135px;

    background:
        radial-gradient(
            circle at 82% 50%,
            rgba(0, 98, 254, 0.055),
            transparent 31%
        ),
        #FFFFFF;

    overflow: hidden;
}


/* =====================================================
   GRID BACKGROUND
   Muito sutil para não competir com o conteúdo
===================================================== */

.si-solution::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            transparent 96%
        );

    pointer-events: none;
}


/* =====================================================
   GLOW
===================================================== */

.si-solution-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -280px;
    top: 35%;

    border-radius: 50%;

    background: #0062FE;

    filter: blur(170px);

    opacity: 0.045;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.si-solution-heading {
    max-width: 790px;

    margin: 0 auto 68px;

    text-align: center;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.si-section-label {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.28
    );

    border-radius: 100px;

    background:
        rgba(
            0,
            98,
            254,
            0.055
        );

    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.09em;
}


.si-section-label span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #0062FE;

    box-shadow:
        0 0 12px rgba(
            0,
            98,
            254,
            0.45
        );
}


/* =====================================================
   TITLE
===================================================== */

.si-solution-heading h2 {
    margin-top: 23px;

    color: #101828;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-solution-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 30px rgba(
            0,
            98,
            254,
            0.10
        );
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-solution-heading p {
    max-width: 650px;

    margin: 24px auto 0;

    color: #667085;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   METHOD
===================================================== */

.si-solution-method {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 10px;
}


/* =====================================================
   METHOD CARD
===================================================== */

.si-method-card {
    position: relative;

    z-index: 1;

    min-height: 320px;

    padding: 22px 20px 24px;

    border: 1px solid #E5E7EB;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F8FAFC
        );

    box-shadow:
        0 20px 55px rgba(
            15,
            23,
            42,
            0.07
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.si-method-card:hover {
    transform: translateY(-6px);

    border-color: rgba(
        0,
        98,
        254,
        0.28
    );

    box-shadow:
        0 28px 70px rgba(
            15,
            23,
            42,
            0.11
        ),
        0 0 35px rgba(
            0,
            98,
            254,
            0.05
        );
}


/* =====================================================
   TOP
===================================================== */

.si-method-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 18px;
}


.si-method-number {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.si-method-tag {
    color: #98A2B3;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


/* =====================================================
   ICON
===================================================== */

.si-method-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 28px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.20
    );

    border-radius: 12px;

    background:
        rgba(
            0,
            98,
            254,
            0.055
        );

    box-shadow:
        0 0 22px rgba(
            0,
            98,
            254,
            0.035
        );
}


.si-method-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #0062FE;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CARD TITLE
===================================================== */

.si-method-card h3 {
    max-width: 185px;

    margin-top: 24px;

    color: #101828;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.38;

    letter-spacing: -0.02em;

    font-weight: 600;
}


/* =====================================================
   CARD TEXT
===================================================== */

.si-method-card p {
    margin-top: 11px;

    color: #667085;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   DIFFERENTIAL
===================================================== */

.si-solution-differential {
    display: flex;

    align-items: center;

    gap: 25px;

    max-width: 900px;

    margin: 62px auto 0;

    padding: 25px 30px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.16
    );

    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(
                0,
                98,
                254,
                0.055
            ),
            rgba(
                248,
                250,
                252,
                0.90
            )
        );
}


/* =====================================================
   DIFFERENTIAL MARK
===================================================== */

.si-differential-mark {
    display: flex;

    flex-direction: column;

    gap: 5px;

    flex: 0 0 auto;
}


.si-differential-mark span {
    display: block;

    width: 24px;
    height: 2px;

    background: #0062FE;

    box-shadow:
        0 0 10px rgba(
            0,
            98,
            254,
            0.25
        );
}


.si-differential-mark span:nth-child(2) {
    width: 16px;
}


.si-differential-mark span:nth-child(3) {
    width: 9px;
}


/* =====================================================
   DIFFERENTIAL CONTENT
===================================================== */

.si-differential-content > span {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.11em;
}


.si-differential-content h3 {
    margin-top: 7px;

    color: #344054;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.55;

    font-weight: 500;
}


.si-differential-content strong {
    color: #101828;

    font-weight: 600;
}


/* =====================================================
   RESULT
===================================================== */

.si-solution-result {
    max-width: 650px;

    margin: 55px auto 0;

    text-align: center;
}


.si-result-label {
    color: #98A2B3;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.13em;
}


.si-solution-result p {
    margin-top: 9px;

    color: #667085;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.7;
}


.si-solution-result strong {
    color: #101828;

    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .si-solution-method {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 12px;
    }


    .si-method-card:nth-child(5) {
        grid-column: 1 / -1;

        max-width:
            calc(
                33.333% - 6px
            );

        margin: 0 auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }


    .si-solution {
        padding: 80px 0 90px;
    }


    /* HEADING */

    .si-solution-heading {
        margin-bottom: 42px;
    }


    .si-solution-heading h2 {
        margin-top: 19px;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-solution-heading p {
        margin-top: 18px;

        font-size: 12px;

        line-height: 1.7;
    }


    /* METHOD */

    .si-solution-method {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .si-method-card,
    .si-method-card:nth-child(5) {

        max-width: none;

        min-height: auto;

        margin: 0;

        padding: 20px;
    }


    .si-method-icon {
        margin-top: 22px;

        width: 43px;
        height: 43px;
    }


    .si-method-card h3 {
        margin-top: 18px;

        max-width: 100%;

        font-size: 15px;
    }


    .si-method-card p {
        font-size: 10px;

        line-height: 1.7;
    }


    /* DIFFERENTIAL */

    .si-solution-differential {
        align-items: flex-start;

        gap: 18px;

        margin-top: 40px;

        padding: 20px;

        border-radius: 14px;
    }


    .si-differential-content h3 {
        font-size: 12px;
    }


    /* RESULT */

    .si-solution-result {
        margin-top: 40px;
    }


    .si-solution-result p {
        font-size: 10px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-method-card {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-01c21e8 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 05 — O QUE VOCÊ RECEBE
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* =====================================================
   SECTION
===================================================== */

.si-included {
    position: relative;

    padding: 125px 0 135px;

    background:
        radial-gradient(
            circle at 18% 35%,
            rgba(0, 98, 254, 0.08),
            transparent 30%
        ),
        #000511;

    overflow: hidden;
}


/* =====================================================
   GRID BACKGROUND
===================================================== */

.si-included::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.95),
            transparent 96%
        );

    pointer-events: none;
}


/* =====================================================
   GLOW
===================================================== */

.si-included-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: 25%;

    border-radius: 50%;

    background: #0062FE;

    filter: blur(180px);

    opacity: 0.055;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-included .si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.si-included-heading {
    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;
}


/* =====================================================
   LABEL
===================================================== */

.si-section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.10em;
}


.si-section-label span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #0062FE;

    box-shadow:
        0 0 10px rgba(
            0,
            98,
            254,
            0.8
        );
}


/* =====================================================
   TITLE
===================================================== */

.si-included-heading h2 {
    margin-top: 22px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-included-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 35px rgba(
            0,
            98,
            254,
            0.20
        );
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-included-heading p {
    max-width: 670px;

    margin: 24px auto 0;

    color: #8994A7;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   GRID
===================================================== */

.si-included-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =====================================================
   CARD
===================================================== */

.si-included-card {
    position: relative;

    min-height: 365px;

    padding: 24px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.09
    );

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 25px 70px rgba(
            0,
            0,
            0,
            0.20
        );

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =====================================================
   FEATURED CARD
===================================================== */

.si-included-card--featured {
    border-color: rgba(
        0,
        98,
        254,
        0.28
    );

    background:
        linear-gradient(
            145deg,
            rgba(0,98,254,0.09),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 25px 80px rgba(
            0,
            0,
            0,
            0.25
        ),
        0 0 50px rgba(
            0,
            98,
            254,
            0.04
        );
}


.si-included-card--featured::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #0062FE,
            transparent
        );
}


/* =====================================================
   HOVER
===================================================== */

.si-included-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        0,
        98,
        254,
        0.25
    );

    box-shadow:
        0 30px 80px rgba(
            0,
            0,
            0,
            0.30
        ),
        0 0 40px rgba(
            0,
            98,
            254,
            0.05
        );
}


/* =====================================================
   CARD TOP
===================================================== */

.si-included-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.07
    );
}


.si-included-number {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.si-included-label {
    color: #465267;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.09em;
}


/* =====================================================
   ICON
===================================================== */

.si-included-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 25px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.25
    );

    border-radius: 12px;

    background:
        rgba(
            0,
            98,
            254,
            0.07
        );
}


.si-included-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #0062FE;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CARD TITLE
===================================================== */

.si-included-card h3 {
    margin-top: 22px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    line-height: 1.3;

    letter-spacing: -0.025em;

    font-weight: 600;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.si-included-card > p {
    margin-top: 10px;

    color: #788397;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.7;

    font-weight: 400;
}


/* =====================================================
   LIST
===================================================== */

.si-included-card ul {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin: 19px 0 0;

    padding: 0;

    list-style: none;
}


.si-included-card li {
    position: relative;

    padding-left: 17px;

    color: #929CAD;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.5;
}


.si-included-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #0062FE;

    font-size: 9px;

    font-weight: 700;
}


/* =====================================================
   SUMMARY
===================================================== */

.si-included-summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    max-width: 1000px;

    margin: 18px auto 0;

    padding: 27px 30px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );

    border-radius: 17px;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );
}


/* =====================================================
   SUMMARY CONTENT
===================================================== */

.si-summary-content {
    max-width: 470px;
}


.si-summary-label {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.10em;
}


.si-summary-content h3 {
    margin-top: 7px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    line-height: 1.4;

    letter-spacing: -0.025em;

    font-weight: 500;
}


.si-summary-content h3 span {
    color: #0062FE;
}


.si-summary-content p {
    margin-top: 7px;

    color: #778397;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.65;
}


/* =====================================================
   FLOW
===================================================== */

.si-summary-flow {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 9px;

    max-width: 420px;
}


.si-summary-flow span {
    color: #B0BAC9;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.06em;
}


.si-summary-flow b {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 400;
}


/* =====================================================
   CTA AREA
===================================================== */

.si-included-cta {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 48px;

    text-align: center;
}


.si-included-cta p {
    margin-bottom: 17px;

    color: #8994A7;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.si-whatsapp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 9px;

    background: #25D366;

    color: #06100A;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(
            37,
            211,
            102,
            0.16
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.si-whatsapp-btn:hover {
    transform: translateY(-2px);

    background: #2BE06D;

    box-shadow:
        0 14px 35px rgba(
            37,
            211,
            102,
            0.25
        );
}


/* =====================================================
   WHATSAPP ICON
===================================================== */

.si-whatsapp-icon {
    display: flex;

    align-items: center;
    justify-content: center;
}


.si-whatsapp-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: #06100A;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CTA SMALL
===================================================== */

.si-included-cta small {
    margin-top: 10px;

    color: #4D596C;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 400;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .si-included-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .si-included-summary {
        flex-direction: column;

        align-items: flex-start;
    }

    .si-summary-flow {
        justify-content: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-included {
        padding: 80px 0 90px;
    }


    .si-included .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }


    /* HEADING */

    .si-included-heading {
        margin-bottom: 40px;
    }


    .si-included-heading h2 {
        margin-top: 19px;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-included-heading p {
        margin-top: 18px;

        font-size: 11px;

        line-height: 1.7;
    }


    /* CARDS */

    .si-included-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .si-included-card {
        min-height: auto;

        padding: 21px;

        border-radius: 15px;
    }


    .si-included-icon {
        width: 43px;
        height: 43px;

        margin-top: 21px;
    }


    .si-included-card h3 {
        margin-top: 18px;

        font-size: 16px;
    }


    .si-included-card > p {
        font-size: 10px;
    }


    .si-included-card ul {
        margin-top: 16px;
    }


    .si-included-card li {
        font-size: 9px;
    }


    /* SUMMARY */

    .si-included-summary {
        margin-top: 10px;

        padding: 22px;

        gap: 22px;
    }


    .si-summary-content h3 {
        font-size: 15px;
    }


    .si-summary-flow {
        gap: 7px;
    }


    .si-summary-flow span {
        font-size: 6px;
    }


    /* CTA */

    .si-included-cta {
        margin-top: 38px;
    }


    .si-included-cta p {
        max-width: 300px;

        font-size: 10px;

        line-height: 1.6;
    }


    .si-whatsapp-btn {
        width: 100%;

        min-height: 52px;

        padding: 0 18px;

        font-size: 10px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-included-card,
    .si-whatsapp-btn {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbd178e *//* =====================================================
   SITE INTELIGENTE
   BLOCO 06 — PROVA SOCIAL
   VERSÃO BRANCA
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.si-proof {
    position: relative;

    padding: 125px 0 135px;

    background: #FFFFFF;

    overflow: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-proof .si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.si-proof-heading {
    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.si-proof-heading .si-section-label {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.25
    );

    border-radius: 100px;

    background: rgba(
        0,
        98,
        254,
        0.05
    );

    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.09em;
}


.si-proof-heading .si-section-label span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #0062FE;
}


/* =====================================================
   TITLE
===================================================== */

.si-proof-heading h2 {
    margin-top: 23px;

    color: #08101F;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-proof-heading h2 span {
    color: #0062FE;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-proof-heading p {
    max-width: 620px;

    margin: 23px auto 0;

    color: #687386;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   PROOF GRID
===================================================== */

.si-proof-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =====================================================
   PROOF CARD
===================================================== */

.si-proof-card {
    position: relative;

    min-height: 315px;

    padding: 24px;

    border: 1px solid #E4E8EF;

    border-radius: 17px;

    background: #FFFFFF;

    box-shadow:
        0 18px 45px rgba(
            15,
            30,
            55,
            0.07
        );

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =====================================================
   FEATURED
===================================================== */

.si-proof-card--featured {
    border-color: rgba(
        0,
        98,
        254,
        0.30
    );

    background:
        linear-gradient(
            145deg,
            rgba(0,98,254,0.035),
            #FFFFFF
        );

    box-shadow:
        0 22px 55px rgba(
            15,
            30,
            55,
            0.10
        );
}


.si-proof-card--featured::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 2px;

    background: #0062FE;
}


/* =====================================================
   HOVER
===================================================== */

.si-proof-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        0,
        98,
        254,
        0.25
    );

    box-shadow:
        0 25px 60px rgba(
            15,
            30,
            55,
            0.11
        );
}


/* =====================================================
   CARD TOP
===================================================== */

.si-proof-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom: 1px solid #EDF0F4;
}


/* =====================================================
   STARS
===================================================== */

.si-proof-stars {
    display: flex;

    gap: 3px;
}


.si-proof-stars span {
    color: #0062FE;

    font-size: 11px;

    line-height: 1;
}


/* =====================================================
   INDEX
===================================================== */

.si-proof-index {
    color: #9AA4B3;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


/* =====================================================
   QUOTE
===================================================== */

.si-proof-quote {
    height: 38px;

    margin-top: 20px;

    color: #0062FE;

    font-family: Georgia, serif;

    font-size: 50px;

    line-height: 1;

    opacity: 0.75;
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.si-proof-card blockquote {
    min-height: 105px;

    margin: 2px 0 0;

    color: #4E596A;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   AUTHOR
===================================================== */

.si-proof-author {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 18px;

    padding-top: 17px;

    border-top: 1px solid #EDF0F4;
}


/* =====================================================
   AVATAR
===================================================== */

.si-proof-avatar {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.25
    );

    border-radius: 50%;

    background: rgba(
        0,
        98,
        254,
        0.05
    );
}


.si-proof-avatar span {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 400;
}


/* =====================================================
   AUTHOR TEXT
===================================================== */

.si-proof-author strong {
    display: block;

    color: #101827;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;
}


.si-proof-author small {
    display: block;

    margin-top: 2px;

    color: #8993A3;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 400;
}


/* =====================================================
   CASE
===================================================== */

.si-proof-case {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 60px;

    max-width: 1000px;

    margin: 18px auto 0;

    padding: 34px;

    border: 1px solid #E4E8EF;

    border-radius: 18px;

    background: #F8FAFC;
}


/* =====================================================
   CASE CONTENT
===================================================== */

.si-proof-case-label {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.10em;
}


.si-proof-case-content h3 {
    margin-top: 10px;

    color: #101827;

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    line-height: 1.35;

    letter-spacing: -0.025em;

    font-weight: 600;
}


.si-proof-case-content h3 span {
    color: #0062FE;
}


.si-proof-case-content p {
    max-width: 410px;

    margin-top: 12px;

    color: #687386;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.75;
}


/* =====================================================
   CASE PLACEHOLDER
===================================================== */

.si-proof-case-placeholder {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 230px;

    padding: 20px;

    border: 1px dashed rgba(
        0,
        98,
        254,
        0.28
    );

    border-radius: 14px;

    background: #FFFFFF;
}


.si-proof-case-placeholder > small {
    margin-top: 14px;

    color: #8993A3;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.10em;
}


/* =====================================================
   BROWSER
===================================================== */

.si-case-browser {
    width: min(
        100%,
        350px
    );

    overflow: hidden;

    border: 1px solid #DDE3EB;

    border-radius: 10px;

    background: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(
            15,
            30,
            55,
            0.10
        );
}


/* =====================================================
   BROWSER TOP
===================================================== */

.si-case-browser-top {
    display: flex;

    align-items: center;

    gap: 5px;

    height: 25px;

    padding: 0 10px;

    border-bottom: 1px solid #EDF0F4;

    background: #F7F9FB;
}


.si-case-browser-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #B9C1CD;
}


/* =====================================================
   BROWSER CONTENT
===================================================== */

.si-case-browser-content {
    padding: 24px;
}


.si-case-line {
    width: 72%;
    height: 8px;

    margin-bottom: 11px;

    border-radius: 10px;

    background: #DDE3EB;
}


.si-case-line--small {
    width: 35%;

    background: rgba(
        0,
        98,
        254,
        0.55
    );
}


.si-case-line--medium {
    width: 53%;
}


/* =====================================================
   CASE BUTTON
===================================================== */

.si-case-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 30px;

    margin-top: 13px;

    padding: 0 14px;

    border-radius: 6px;

    background: #0062FE;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;
}


/* =====================================================
   TRUST
===================================================== */

.si-proof-trust {
    display: grid;

    grid-template-columns:
        1fr
        minmax(
            300px,
            650px
        )
        1fr;

    align-items: center;

    gap: 24px;

    max-width: 900px;

    margin: 55px auto 0;
}


.si-trust-line {
    height: 1px;

    background: #E3E7ED;
}


.si-trust-content {
    text-align: center;
}


.si-trust-content > span {
    color: #7B8697;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.11em;
}


.si-trust-content p {
    margin-top: 8px;

    color: #687386;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.7;
}


.si-trust-content strong {
    color: #101827;

    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .si-proof-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .si-proof-card:last-child {
        grid-column: 1 / -1;

        max-width: calc(
            50% - 7px
        );

        margin: 0 auto;
    }


    .si-proof-case {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-proof {
        padding: 80px 0 90px;
    }


    .si-proof .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }


    /* HEADING */

    .si-proof-heading {
        margin-bottom: 40px;
    }


    .si-proof-heading h2 {
        margin-top: 0;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-proof-heading p {
        margin-top: 18px;

        font-size: 11px;

        line-height: 1.7;
    }


    /* CARDS */

    .si-proof-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .si-proof-card,
    .si-proof-card:last-child {
        max-width: none;

        min-height: auto;

        margin: 0;

        padding: 21px;

        border-radius: 15px;
    }


    .si-proof-card blockquote {
        min-height: auto;

        font-size: 10px;
    }


    /* CASE */

    .si-proof-case {
        margin-top: 10px;

        padding: 22px;

        gap: 25px;

        border-radius: 15px;
    }


    .si-proof-case-content h3 {
        font-size: 17px;
    }


    .si-proof-case-content p {
        font-size: 9px;
    }


    .si-proof-case-placeholder {
        min-height: 190px;
    }


    /* TRUST */

    .si-proof-trust {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 42px;
    }


    .si-trust-content p {
        font-size: 9px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-proof-card {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-51414e0 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 07 — BÔNUS + OFERTA
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.si-offer {
    position: relative;

    padding: 125px 0 135px;

    background:
        radial-gradient(
            circle at 50% 28%,
            rgba(0, 98, 254, 0.10),
            transparent 34%
        ),
        #000511;

    overflow: hidden;
}


/* =====================================================
   GRID DE FUNDO
===================================================== */

.si-offer::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.95),
            transparent 97%
        );

    pointer-events: none;
}


/* =====================================================
   GLOW
===================================================== */

.si-offer-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 35%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #0062FE;

    filter: blur(190px);

    opacity: 0.045;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-offer .si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.si-offer-heading {
    max-width: 800px;

    margin: 0 auto 60px;

    text-align: center;
}


/* =====================================================
   REMOVER LABEL DA OFERTA
===================================================== */

.si-offer-heading .si-section-label {
    display: none !important;
}


.si-offer-heading h2 {
    margin-top: 22px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-offer-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 35px rgba(
            0,
            98,
            254,
            0.20
        );
}


.si-offer-heading p {
    max-width: 650px;

    margin: 23px auto 0;

    color: #8994A7;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   MAIN OFFER BOX
===================================================== */

.si-offer-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(300px, 0.6fr);

    max-width: 1000px;

    margin: 0 auto;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.25
    );

    border-radius: 20px;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.055),
            rgba(0,98,254,0.055)
        );

    box-shadow:
        0 35px 100px rgba(
            0,
            0,
            0,
            0.32
        ),
        0 0 70px rgba(
            0,
            98,
            254,
            0.035
        );

    overflow: hidden;
}


/* =====================================================
   OFFER MAIN
===================================================== */

.si-offer-main {
    padding: 35px 38px;
}


/* =====================================================
   PRODUCT
===================================================== */

.si-offer-product-label {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.11em;
}


.si-offer-product h3 {
    margin-top: 9px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 28px;

    line-height: 1.25;

    letter-spacing: -0.035em;

    font-weight: 600;
}


.si-offer-product p {
    margin-top: 9px;

    color: #7D899D;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.7;
}


/* =====================================================
   CHECKLIST
===================================================== */

.si-offer-checklist {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px 20px;

    margin-top: 29px;

    padding-top: 25px;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.07
    );
}


.si-offer-checklist div {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #9BA5B5;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.5;
}


.si-offer-checklist span {
    flex: 0 0 auto;

    color: #0062FE;

    font-weight: 700;
}


/* =====================================================
   PRICE SIDE
===================================================== */

.si-offer-price {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px 30px;

    text-align: center;

    border-left: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );

    background:
        rgba(
            0,
            0,
            0,
            0.18
        );
}


/* =====================================================
   PRICE LABEL
===================================================== */

.si-price-label {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.13em;
}


/* =====================================================
   PRICE SUPPORT TEXT
===================================================== */

.si-price-old {
    min-height: 17px;

    margin-top: 13px;

    color: #536075;

    font-family: "Poppins", sans-serif;

    font-size: 8px;
}


/* =====================================================
   PRICE
===================================================== */

.si-price {
    display: flex;

    align-items: flex-start;

    margin-top: 1px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;
}


.si-price small {
    margin-top: 15px;

    margin-right: 3px;

    color: #0062FE;

    font-size: 14px;

    font-weight: 600;
}


.si-price strong {
    font-size: 72px;

    line-height: 0.95;

    letter-spacing: -0.06em;

    font-weight: 700;
}


/* =====================================================
   PRICE CONDITION
===================================================== */

.si-price-condition {
    max-width: 170px;

    margin-top: 11px;

    color: #68758A;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    line-height: 1.5;
}


/* =====================================================
   PRAZO + REVISÃO
===================================================== */

.si-offer-details {
    display: flex;

    flex-direction: column;

    gap: 10px;

    width: 100%;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.07
    );
}


.si-offer-detail {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    text-align: left;
}


.si-offer-detail > span {
    flex: 0 0 auto;

    margin-top: 1px;

    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;
}


.si-offer-detail div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.si-offer-detail strong {
    color: #C8D0DC;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    line-height: 1.4;

    font-weight: 600;
}


.si-offer-detail small {
    color: #5F6B7E;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    line-height: 1.5;

    font-weight: 400;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.si-whatsapp-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 51px;

    padding: 0 25px;

    border-radius: 9px;

    background: #25D366;

    color: #06100A;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(
            37,
            211,
            102,
            0.15
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.si-whatsapp-btn--offer {
    width: 100%;

    margin-top: 24px;
}


.si-whatsapp-btn:hover {
    transform: translateY(-2px);

    background: #2BE06D;

    box-shadow:
        0 16px 38px rgba(
            37,
            211,
            102,
            0.24
        );
}


/* =====================================================
   WHATSAPP ICON
===================================================== */

.si-whatsapp-icon {
    display: flex;

    align-items: center;

    justify-content: center;
}


.si-whatsapp-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #06100A;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   PRICE NOTE
===================================================== */

.si-price-note {
    margin-top: 10px;

    color: #465267;

    font-family: "Poppins", sans-serif;

    font-size: 7px;
}


/* =====================================================
   BONUS HEADING
===================================================== */

.si-bonus-heading {
    max-width: 650px;

    margin: 70px auto 30px;

    text-align: center;
}


.si-bonus-heading > span {
    color: #465267;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.11em;
}


.si-bonus-heading h3 {
    margin-top: 8px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    line-height: 1.4;

    letter-spacing: -0.025em;

    font-weight: 500;
}


.si-bonus-heading strong {
    color: #0062FE;

    font-weight: 600;
}


/* =====================================================
   BONUS GRID
===================================================== */

.si-bonus-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 13px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =====================================================
   BONUS CARD
===================================================== */

.si-bonus-card {
    position: relative;

    min-height: 330px;

    padding: 25px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.si-bonus-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        0,
        98,
        254,
        0.24
    );
}


/* =====================================================
   BONUS FEATURED
===================================================== */

.si-bonus-card--featured {
    border-color: rgba(
        0,
        98,
        254,
        0.24
    );

    background:
        linear-gradient(
            145deg,
            rgba(0,98,254,0.07),
            rgba(255,255,255,0.015)
        );
}


.si-bonus-card--featured::before {
    content: "";

    position: absolute;

    top: 0;
    left: 24px;
    right: 24px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #0062FE,
            transparent
        );
}


/* =====================================================
   BONUS TOP
===================================================== */

.si-bonus-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.07
    );
}


.si-bonus-number {
    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.09em;
}


.si-bonus-price {
    color: #8C97A9;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;
}


/* =====================================================
   BONUS ICON
===================================================== */

.si-bonus-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 23px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.23
    );

    border-radius: 11px;

    background:
        rgba(
            0,
            98,
            254,
            0.06
        );
}


.si-bonus-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: #0062FE;

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   BONUS TITLE
===================================================== */

.si-bonus-card h4 {
    margin-top: 20px;

    color: #FFFFFF;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 600;
}


/* =====================================================
   BONUS TEXT
===================================================== */

.si-bonus-card > p {
    margin-top: 9px;

    color: #778397;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.7;
}


/* =====================================================
   BONUS LIST
===================================================== */

.si-bonus-card ul {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin: 17px 0 0;

    padding: 0;

    list-style: none;
}


.si-bonus-card li {
    position: relative;

    padding-left: 15px;

    color: #8B96A7;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    line-height: 1.45;
}


.si-bonus-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #0062FE;

    font-weight: 700;
}


/* =====================================================
   CLOSING
===================================================== */

.si-offer-closing {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 25px;

    max-width: 850px;

    margin: 50px auto 0;
}


.si-closing-line {
    height: 1px;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );
}


.si-offer-closing p {
    max-width: 500px;

    color: #657185;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.6;

    text-align: center;
}


.si-offer-closing strong {
    color: #AAB3C1;

    font-weight: 500;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .si-offer-box {
        grid-template-columns: 1fr;
    }


    .si-offer-price {
        border-top: 1px solid rgba(
            255,
            255,
            255,
            0.08
        );

        border-left: 0;
    }


    .si-bonus-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .si-bonus-card:last-child {
        grid-column: 1 / -1;

        max-width:
            calc(50% - 6px);

        margin: 0 auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-offer {
        padding: 80px 0 90px;
    }


    .si-offer .si-container {
        width: min(
            calc(100% - 32px),
            1100px
        );
    }


    /* HEADING */

    .si-offer-heading {
        margin-bottom: 40px;
    }


    .si-offer-heading h2 {
        margin-top: 19px;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-offer-heading p {
        margin-top: 18px;

        font-size: 11px;

        line-height: 1.7;
    }


    /* OFFER */

    .si-offer-box {
        border-radius: 16px;
    }


    .si-offer-main {
        padding: 24px 21px;
    }


    .si-offer-product h3 {
        font-size: 22px;
    }


    .si-offer-checklist {
        grid-template-columns: 1fr;

        gap: 9px;

        margin-top: 24px;

        padding-top: 21px;
    }


    .si-offer-checklist div {
        font-size: 9px;
    }


    /* PRICE */

    .si-offer-price {
        padding: 30px 21px 27px;
    }


    .si-price strong {
        font-size: 65px;
    }


    /* PRAZO + REVISÃO */

    .si-offer-details {
        margin-top: 20px;

        padding-top: 16px;

        gap: 9px;
    }


    .si-offer-detail strong {
        font-size: 8px;
    }


    .si-offer-detail small {
        font-size: 7px;
    }


    /* BUTTON */

    .si-whatsapp-btn--offer {
        width: 100%;

        min-height: 52px;
    }


    /* BONUS */

    .si-bonus-heading {
        margin-top: 50px;
    }


    .si-bonus-heading h3 {
        font-size: 18px;
    }


    .si-bonus-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .si-bonus-card,
    .si-bonus-card:last-child {
        min-height: auto;

        max-width: none;

        margin: 0;

        padding: 21px;
    }


    /* CLOSING */

    .si-offer-closing {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 40px;
    }

}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-bonus-card,
    .si-whatsapp-btn {
        transition: none;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b69d22 *//* =====================================================
   SITE INTELIGENTE
   BLOCO 08 — FAQ
   VERSÃO CLARA
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.si-faq {
    position: relative;

    padding: 125px 0 130px;

    background:
        radial-gradient(
            circle at 50% 8%,
            rgba(0, 98, 254, 0.055),
            transparent 34%
        ),
        #FFFFFF;

    overflow: hidden;
}


/* =====================================================
   GRID DE FUNDO
===================================================== */

.si-faq::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(7, 18, 38, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 18, 38, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            transparent 90%
        );

    pointer-events: none;
}


/* =====================================================
   GLOW
===================================================== */

.si-faq-glow {
    position: absolute;

    width: 460px;
    height: 460px;

    right: -300px;
    top: 30%;

    border-radius: 50%;

    background: #0062FE;

    filter: blur(180px);

    opacity: 0.035;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.si-faq .si-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1000px
    );

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.si-faq-heading {
    max-width: 750px;

    margin: 0 auto 58px;

    text-align: center;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.si-faq .si-section-label {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border: 1px solid rgba(
        0,
        98,
        254,
        0.18
    );

    border-radius: 100px;

    background:
        rgba(
            0,
            98,
            254,
            0.045
        );

    color: #0062FE;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.10em;
}


.si-faq .si-section-label span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #0062FE;

    box-shadow:
        0 0 10px rgba(
            0,
            98,
            254,
            0.45
        );
}


/* =====================================================
   TITLE
===================================================== */

.si-faq-heading h2 {
    margin-top: 21px;

    color: #071226;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        36px,
        4.5vw,
        56px
    );

    line-height: 1.06;

    letter-spacing: -0.045em;

    font-weight: 700;
}


.si-faq-heading h2 span {
    color: #0062FE;

    text-shadow:
        0 0 35px rgba(
            0,
            98,
            254,
            0.12
        );
}


/* =====================================================
   DESCRIPTION
===================================================== */

.si-faq-heading p {
    max-width: 610px;

    margin: 21px auto 0;

    color: #697589;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   FAQ LIST
===================================================== */

.si-faq-list {
    width: min(
        100%,
        820px
    );

    margin: 0 auto;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.si-faq-item {
    margin-bottom: 9px;

    border: 1px solid rgba(
        7,
        18,
        38,
        0.10
    );

    border-radius: 12px;

    background:
        rgba(
            255,
            255,
            255,
            0.90
        );

    box-shadow:
        0 8px 25px rgba(
            7,
            18,
            38,
            0.035
        );

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.si-faq-item:hover {
    border-color: rgba(
        0,
        98,
        254,
        0.20
    );

    box-shadow:
        0 12px 30px rgba(
            7,
            18,
            38,
            0.055
        );
}


.si-faq-item[open] {
    border-color: rgba(
        0,
        98,
        254,
        0.24
    );

    background:
        rgba(
            0,
            98,
            254,
            0.025
        );
}


/* =====================================================
   SUMMARY
===================================================== */

.si-faq-item summary {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 68px;

    padding: 0 23px;

    cursor: pointer;

    list-style: none;

    color: #17233A;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.5;

    user-select: none;
}


/* =====================================================
   REMOVE DEFAULT ARROW
===================================================== */

.si-faq-item summary::-webkit-details-marker {
    display: none;
}


.si-faq-item summary::marker {
    display: none;
}


/* =====================================================
   PLUS / MINUS
===================================================== */

.si-faq-item summary i {
    position: relative;

    flex: 0 0 auto;

    width: 25px;
    height: 25px;

    border: 1px solid rgba(
        7,
        18,
        38,
        0.12
    );

    border-radius: 7px;

    background:
        #FFFFFF;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}


.si-faq-item summary i::before,
.si-faq-item summary i::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 9px;
    height: 1px;

    background: #0062FE;

    transform:
        translate(
            -50%,
            -50%
        );

    transition:
        transform 0.2s ease;
}


.si-faq-item summary i::after {
    transform:
        translate(
            -50%,
            -50%
        )
        rotate(90deg);
}


.si-faq-item[open] summary i {
    border-color: rgba(
        0,
        98,
        254,
        0.28
    );

    background:
        rgba(
            0,
            98,
            254,
            0.07
        );
}


.si-faq-item[open] summary i::after {
    transform:
        translate(
            -50%,
            -50%
        )
        rotate(0deg);
}


/* =====================================================
   ANSWER
===================================================== */

.si-faq-answer {
    padding:
        0 23px 23px;
}


.si-faq-answer p {
    max-width: 690px;

    margin: 0;

    padding-top: 2px;

    color: #697589;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.8;

    font-weight: 400;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes siFaqOpen {

    from {
        opacity: 0;

        transform: translateY(-5px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


.si-faq-item[open] .si-faq-answer {
    animation:
        siFaqOpen
        0.25s ease;
}


/* =====================================================
   MINI CTA
===================================================== */

.si-faq-mini-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    width: min(
        100%,
        820px
    );

    margin: 28px auto 0;

    padding: 23px 25px;

    border: 1px solid rgba(
        7,
        18,
        38,
        0.09
    );

    border-radius: 14px;

    background:
        linear-gradient(
            110deg,
            #F8FAFD,
            #F3F7FF
        );

    box-shadow:
        0 12px 35px rgba(
            7,
            18,
            38,
            0.045
        );
}


/* =====================================================
   CTA TEXT
===================================================== */

.si-faq-mini-cta > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.si-faq-mini-cta span {
    color: #778398;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.10em;
}


.si-faq-mini-cta strong {
    color: #17233A;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.si-faq-btn {
    flex: 0 0 auto;

    min-height: 45px;

    padding: 0 19px;

    border-radius: 8px;

    background: #25D366;

    color: #06100A;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.si-whatsapp-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-right: 7px;

    vertical-align: middle;
}


.si-whatsapp-icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: #06100A;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.si-faq-btn:hover {
    transform: translateY(-2px);

    background: #2BE06D;

    box-shadow:
        0 14px 35px rgba(
            37,
            211,
            102,
            0.20
        );
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 700px) {

    .si-faq-mini-cta {
        align-items: flex-start;

        flex-direction: column;
    }


    .si-faq-btn {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .si-faq {
        padding: 80px 0 90px;
    }


    .si-faq .si-container {
        width: min(
            calc(100% - 32px),
            1000px
        );
    }


    /* HEADING */

    .si-faq-heading {
        margin-bottom: 38px;
    }


    .si-faq-heading h2 {
        margin-top: 18px;

        font-size: 34px;

        line-height: 1.07;
    }


    .si-faq-heading p {
        margin-top: 17px;

        font-size: 10px;

        line-height: 1.7;
    }


    /* FAQ */

    .si-faq-item {
        border-radius: 10px;

        margin-bottom: 7px;
    }


    .si-faq-item summary {
        min-height: 61px;

        padding: 0 17px;

        font-size: 9px;

        gap: 12px;
    }


    .si-faq-item summary i {
        width: 23px;
        height: 23px;

        border-radius: 6px;
    }


    .si-faq-answer {
        padding:
            0 17px 19px;
    }


    .si-faq-answer p {
        font-size: 9px;

        line-height: 1.75;
    }


    /* MINI CTA */

    .si-faq-mini-cta {
        margin-top: 20px;

        padding: 19px;

        border-radius: 11px;

        gap: 17px;
    }


    .si-faq-mini-cta strong {
        font-size: 9px;
    }

}


/* =====================================================
   ACCESSIBILITY / REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .si-faq-item,
    .si-faq-item summary i,
    .si-faq-btn {
        transition: none;
    }


    .si-faq-item[open] .si-faq-answer {
        animation: none;
    }

}/* End custom CSS */
/* Start custom CSS *//* =========================================================
   SITE INTELIGENTE
   CSS GLOBAL — FULL WIDTH REAL
   CORREÇÃO DE FAIXAS LATERAIS
========================================================= */


/* =========================================================
   01 — RESET
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    overflow-x: hidden !important;
}


/* =========================================================
   02 — BOX SIZING
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   03 — ELEMENTOR
========================================================= */

.elementor,
.elementor-page,
.elementor-section-wrap {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
}


/* =========================================================
   04 — CONTAINERS PRINCIPAIS
       
   O Elementor pode colocar a seção dentro de um
   container com padding lateral.

   Aqui fazemos a seção ocupar a viewport inteira.
========================================================= */

.elementor > .e-con,
.elementor > .e-con.e-parent,
.elementor-section-wrap > .e-con,
.elementor > .elementor-section,
.elementor-section-wrap > .elementor-section {

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* =========================================================
   05 — SEÇÕES DA LANDING PAGE
       
   Todas as seções precisam começar exatamente no
   limite esquerdo da viewport.
========================================================= */

.si-hero,
.si-dor,
.si-solution,
.si-receive,
.si-proof,
.si-bonus,
.si-offer,
.si-guarantee,
.si-faq,
.si-final {

    position: relative;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* =========================================================
   06 — CONTAINERS INTERNOS
       
   IMPORTANTE:
   Aqui NÃO mexemos na largura dos conteúdos.

   O conteúdo continua centralizado e limitado pelos
   valores que já usamos nos blocos.
========================================================= */

.si-container {

    position: relative;

    width: min(
        calc(100% - 48px),
        1100px
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   07 — ELEMENTOS QUE NÃO PODEM CRIAR OVERFLOW
========================================================= */

img,
video,
iframe,
svg {

    max-width: 100%;
}


/* =========================================================
   08 — SEÇÕES BRANCAS
       
   Garante que o branco também ocupe a viewport inteira.
========================================================= */

.si-dor,
.si-receive,
.si-bonus,
.si-guarantee,
.si-final {

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* =========================================================
   09 — SEÇÕES ESCURAS
       
   Mesma correção para evitar que o fundo preto fique
   deslocado em relação ao branco.
========================================================= */

.si-hero,
.si-solution,
.si-proof,
.si-offer,
.si-faq {

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* =========================================================
   10 — ELEMENTOR CONTAINER INTERNO
       
   Não aplicar full width indiscriminadamente nos
   containers internos, pois isso destruiria o grid
   e os limites de conteúdo.
========================================================= */

.e-con > .e-con {

    box-sizing: border-box;
}


/* =========================================================
   11 — DESKTOP
========================================================= */

@media (min-width: 1025px) {

    .si-container {
        width: min(
            calc(100% - 48px),
            1100px
        );
    }

}


/* =========================================================
   12 — TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .si-container {
        width: min(
            calc(100% - 40px),
            1100px
        );
    }


    .si-hero,
    .si-dor,
    .si-solution,
    .si-receive,
    .si-proof,
    .si-bonus,
    .si-offer,
    .si-guarantee,
    .si-faq,
    .si-final {

        width: 100vw !important;
        max-width: 100vw !important;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

}


/* =========================================================
   13 — MOBILE
========================================================= */

@media (max-width: 767px) {

    html,
    body {

        width: 100%;
        max-width: 100%;

        overflow-x: hidden !important;
    }


    .si-container {

        width: calc(100% - 32px);

        max-width: none;

        margin-left: auto;
        margin-right: auto;
    }


    .si-hero,
    .si-dor,
    .si-solution,
    .si-receive,
    .si-proof,
    .si-bonus,
    .si-offer,
    .si-guarantee,
    .si-faq,
    .si-final {

        width: 100vw !important;
        max-width: 100vw !important;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

}


/* =========================================================
   14 — EVITAR MARGENS AUTOMÁTICAS
========================================================= */

.elementor p:last-child,
.elementor h1:last-child,
.elementor h2:last-child,
.elementor h3:last-child {

    margin-bottom: 0;
}


/* =========================================================
   15 — SEGURANÇA CONTRA OVERFLOW
========================================================= */

body {

    position: relative;

    overflow-x: hidden !important;
}


/* =========================================================
   16 — REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;
    }

}/* End custom CSS */