/* ==========================================================
   BALANCE PRO - BASE DA NOVA HOME
   Este arquivo receberá o CSS das seções à medida que formos
   construindo a página.
========================================================== */

:root {
    --pro-primary: #2E37A4;
    --pro-primary-dark: #202891;
    --pro-teal: #13BDB3;
    --pro-dark: #18213E;
    --pro-text: #606A82;
    --pro-border: #E7EAF3;
    --pro-soft: #F7F8FC;
    --pro-container: 1180px;
}

html {
    scroll-behavior: smooth;
}

body.balance-pro-page {
    margin: 0;
    color: var(--pro-dark);
    background: #fff;
}

.pro-container {
    width: calc(100% - 40px);
    max-width: var(--pro-container);
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   TOPBAR
========================================================== */

/* ==========================================================
   TOPBAR FIXA
========================================================== */

.pro-topbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1200;

    width: 100%;

    min-height: 36px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            #252A9C 0%,
            #3B37BF 50%,
            #252A9C 100%
        );

    font-size: 12px;

}

.pro-topbar-inner {
    min-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.pro-topbar-icon {
    color: #FFDD57;
    font-size: 15px;
}

.pro-topbar-separator {
    opacity: .45;
}

/* ==========================================================
   HEADER FIXO
========================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 135px;
}

body.balance-pro-page {
    padding-top: 116px;
}

.pro-header {

    position: fixed;

    top: 36px;
    left: 0;
    right: 0;

    z-index: 1190;

    width: 100%;

    background:
        rgba(255, 255, 255, .97);

    border-bottom:
        1px solid rgba(231, 234, 243, .8);

    box-shadow:
        0 7px 25px rgba(30, 40, 90, .06);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

}

.pro-header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.pro-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.pro-logo img {
    display: block;
    width: 132px;
    height: auto;
}

.pro-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}

.pro-nav a {
    position: relative;
    color: #3C455E;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.pro-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 10px;
    background: var(--pro-teal);
    transition: right .2s ease;
}

.pro-nav a:hover {
    color: var(--pro-primary);
}

.pro-nav a:hover::after {
    right: 0;
}

.pro-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pro-login {
    color: var(--pro-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pro-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #3138B8 0%, #272D9F 100%);
    box-shadow: 0 8px 22px rgba(46, 55, 164, .18);
}

.pro-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 55, 164, .25);
}

.pro-btn-primary span {
    font-size: 17px;
    transition: transform .2s ease;
}

.pro-btn-primary:hover span {
    transform: translateX(3px);
}


/* ==========================================================
   MENU MOBILE
========================================================== */

.pro-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    border: 0;
    border-radius: 10px;
    background: #F4F5FB;
    cursor: pointer;
}

.pro-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 5px;
    background: #272F50;
    transition: transform .2s ease, opacity .2s ease;
}

.pro-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.pro-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.pro-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.pro-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--pro-border);
    box-shadow: 0 18px 35px rgba(30, 40, 90, .08);
}

.pro-mobile-menu.is-open {
    display: block;
}

.pro-mobile-menu .pro-container {
    padding-top: 8px;
    padding-bottom: 22px;
}

.pro-mobile-menu a {
    display: block;
    padding: 13px 5px;
    color: #3A425E;
    border-bottom: 1px solid #F1F2F7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.pro-mobile-menu .pro-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 14px 20px;
    color: #fff;
    border: 0;
    border-radius: 9px;
    background: var(--pro-primary);
}


/* ==========================================================
   PLACEHOLDERS DURANTE A CONSTRUÇÃO
   Remover quando começarmos a preencher as seções.
========================================================== */

.balance-pro-page main > section {
    min-height: 1px;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1050px) {

    .pro-nav {
        gap: 20px;
    }

    .pro-nav a {
        font-size: 12px;
    }

    .pro-header-actions {
        gap: 15px;
    }
}

@media (max-width: 950px) {

    .pro-nav,
    .pro-header-actions {
        display: none;
    }

    .pro-menu-toggle {
        display: block;
    }

    .pro-mobile-menu {

        position: fixed;

        top: 80px;
        left: 0;
        right: 0;

        z-index: 1180;

        width: 100%;

    }


}

@media (max-width: 650px) {

  html {
        scroll-padding-top: 125px;
    }

  body.balance-pro-page {
        padding-top: 110px;
    }

  .pro-header {
        top: 40px;
    }

    .pro-container {
        width: calc(100% - 30px);
    }

    .pro-topbar {
        min-height: 40px;
    }

    .pro-topbar-inner {
        min-height: 40px;
        width: calc(100% - 24px);
        line-height: 1.3;
    }

    .pro-topbar-extra,
    .pro-topbar-separator {
        display: none;
    }

    .pro-header-inner {
        min-height: 70px;
    }

    .pro-logo img {
        width: 116px;
    }

    .pro-mobile-menu {
        top: 70px;
    }
}

/* ==========================================================
   01. HERO
========================================================== */

.pro-hero {

    position: relative;
    overflow: hidden;

    padding:
        75px 0 65px;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(19, 189, 179, .08),
            transparent 28%
        ),
        radial-gradient(
            circle at 63% 5%,
            rgba(46, 55, 164, .06),
            transparent 25%
        ),
        #ffffff;

}


/* ==========================================================
   GRID
========================================================== */

.pro-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    gap: 45px;

    align-items: center;
}


/* ==========================================================
   CONTEÚDO
========================================================== */

.pro-hero-content {

    position: relative;

    z-index: 5;

}


.pro-hero-badge {

    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom:
        18px;

    padding:
        7px 12px;

    border-radius:
        50px;

    background:
        rgba(19, 189, 179, .10);

    color:
        #069E96;

    font-size:
        11px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .35px;

}


.pro-hero-badge i {

    font-size:
        13px;

}


/* ==========================================================
   TÍTULO
========================================================== */

.pro-hero-title {

    margin:
        0 0 22px;

    color:
        var(--pro-dark);

    font-size:
        clamp(44px, 4vw, 62px);

    line-height:
        1.035;

    font-weight:
        700;

    letter-spacing:
        -2.2px;

}


.pro-hero-title span {
    display: block;
    white-space: nowrap;
}


.pro-hero-title .pro-hero-highlight {

    color:
        var(--pro-teal);

}


/* ==========================================================
   DESCRIÇÃO
========================================================== */

.pro-hero-description {

    max-width:
        570px;

    margin:
        0 0 27px;

    color:
        var(--pro-text);

    font-size:
        16px;

    line-height:
        1.7;

}


.pro-hero-description strong {

    color:
        #38415E;

    font-weight:
        700;

}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.pro-hero-benefits {

    display:
        flex;

    align-items:
        center;

    gap:
        24px;

    margin-bottom:
        30px;

}


.pro-hero-benefit {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

}


.pro-hero-benefit-icon {

    flex:
        0 0 36px;

    width:
        36px;

    height:
        36px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        var(--pro-primary);

    background:
        #F0F1FF;

    font-size:
        15px;

}


.pro-hero-benefit strong {

    display:
        block;

    margin-bottom:
        1px;

    color:
        #343D59;

    font-size:
        11px;

    font-weight:
        700;

    white-space:
        nowrap;

}


.pro-hero-benefit span {

    display:
        block;

    color:
        #8990A4;

    font-size:
        9px;

    white-space:
        nowrap;

}


/* ==========================================================
   CTAS
========================================================== */

.pro-hero-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    margin-bottom:
        28px;

}


.pro-hero-btn-primary,
.pro-hero-btn-secondary {

    min-height:
        52px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        11px;

    padding:
        0 23px;

    border-radius:
        10px;

    font-size:
        13px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


.pro-hero-btn-primary {

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #3239BC 0%,
            #272D9F 100%
        );

    box-shadow:
        0 10px 25px rgba(46, 55, 164, .20);

}


.pro-hero-btn-primary:hover {

    color:
        #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 34px rgba(46, 55, 164, .27);

}


.pro-hero-btn-primary span {

    font-size:
        18px;

}


.pro-hero-btn-secondary {

    color:
        var(--pro-primary);

    border:
        1px solid #A6ABDE;

    background:
        #ffffff;

}


.pro-hero-btn-secondary:hover {

    color:
        var(--pro-primary);

    border-color:
        var(--pro-primary);

    transform:
        translateY(-2px);

}


.pro-hero-play {

    width:
        24px;

    height:
        24px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid #6F76D2;

    border-radius:
        50%;

    font-size:
        11px;

}


/* ==========================================================
   PROVA SOCIAL
========================================================== */

.pro-hero-proof {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.pro-hero-avatars {

    display:
        flex;

    align-items:
        center;

}


.pro-hero-avatars img {

    width:
        37px;

    height:
        37px;

    object-fit:
        cover;

    border:
        3px solid #ffffff;

    border-radius:
        50%;

    margin-left:
        -10px;

    box-shadow:
        0 4px 12px rgba(20, 29, 68, .13);

}


.pro-hero-avatars img:first-child {

    margin-left:
        0;

}


.pro-hero-proof-title {

    margin-bottom:
        3px;

    color:
        #515A72;

    font-size:
        11px;

    font-weight:
        600;

}


.pro-hero-rating {

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    color:
        #81889B;

    font-size:
        10px;

}


.pro-stars {

    color:
        #FFB400;

    letter-spacing:
        1px;

}


.pro-hero-rating strong {

    color:
        #37405B;

}


/* ==========================================================
   VISUAL
========================================================== */

.pro-hero-visual {

    position:
        relative;

    min-height:
        490px;

}


.pro-hero-glow {

    position:
        absolute;

    z-index:
        0;

    width:
        420px;

    height:
        420px;

    top:
        30px;

    right:
        70px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(19, 189, 179, .15),
            rgba(46, 55, 164, .05) 50%,
            transparent 72%
        );

}


.pro-hero-dots {

    position:
        absolute;

    z-index:
        1;

    right:
        4px;

    bottom:
        28px;

    width:
        100px;

    height:
        100px;

    opacity:
        .35;

    background-image:
        radial-gradient(
            #656BD0 1.4px,
            transparent 1.4px
        );

    background-size:
        11px 11px;

}


/* ==========================================================
   DASHBOARD
========================================================== */

.pro-dashboard-card {

    position:
        absolute;

    z-index:
        2;

    top:
        12px;

    left:
        0;

    width:
        530px;

    min-height:
        410px;

    overflow:
        hidden;

    border:
        1px solid #E7E9F3;

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        0 25px 65px rgba(33, 40, 108, .12);

}


.pro-dashboard-topbar {

    height:
        54px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        0 17px;

    border-bottom:
        1px solid #F0F1F6;

}


.pro-dashboard-brand img {

    width:
        72px;

}


.pro-dashboard-user {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    color:
        #555D74;

    font-size:
        9px;

    font-weight:
        600;

}


.pro-dashboard-avatar {

    width:
        23px;

    height:
        23px;

    border-radius:
        50%;

    background:
        linear-gradient(
            135deg,
            #D7D9FA,
            #9DA4E7
        );

}


.pro-dashboard-body {

    display:
        grid;

    grid-template-columns:
        105px 1fr;

    min-height:
        355px;

}


.pro-dashboard-sidebar {

    padding:
        17px 10px;

    background:
        #FAFAFD;

    border-right:
        1px solid #F0F1F6;

}


.pro-dashboard-menu {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        8px;

    margin-bottom:
        4px;

    border-radius:
        7px;

    color:
        #777F94;

    font-size:
        8px;

}


.pro-dashboard-menu i {

    font-size:
        12px;

}


.pro-dashboard-menu.active {

    color:
        var(--pro-primary);

    background:
        #EFEEFF;

    font-weight:
        700;

}


.pro-dashboard-content {

    padding:
        19px 20px;

}


.pro-dashboard-welcome {

    margin-bottom:
        15px;

}


.pro-dashboard-welcome span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #8990A1;

    font-size:
        8px;

}


.pro-dashboard-welcome strong {

    color:
        #272F4A;

    font-size:
        13px;

}


.pro-dashboard-stats {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        7px;

    margin-bottom:
        18px;

}


.pro-dashboard-stat {

    padding:
        10px;

    border:
        1px solid #ECEEF5;

    border-radius:
        9px;

    background:
        #ffffff;

}


.pro-dashboard-stat span {

    display:
        block;

    color:
        #8A91A5;

    font-size:
        7px;

}


.pro-dashboard-stat strong {

    display:
        block;

    margin:
        3px 0 1px;

    color:
        #252E4C;

    font-size:
        16px;

}


.pro-dashboard-stat small {

    font-size:
        7px;

}


.pro-dashboard-stat .positive {

    color:
        #0EAD9F;

}


.pro-dashboard-section-title {

    margin-bottom:
        8px;

    color:
        #313A56;

    font-size:
        8px;

    font-weight:
        700;

}


.pro-dashboard-appointment {

    display:
        grid;

    grid-template-columns:
        42px 1fr;

    gap:
        9px;

    align-items:
        center;

    padding:
        7px 9px;

    margin-bottom:
        5px;

    border-radius:
        8px;

    background:
        #F8F9FC;

}


.pro-dashboard-appointment strong {

    color:
        var(--pro-primary);

    font-size:
        8px;

}


.pro-dashboard-appointment span {

    display:
        block;

    color:
        #454D65;

    font-size:
        8px;

    font-weight:
        600;

}


.pro-dashboard-appointment small {

    display:
        block;

    margin-top:
        1px;

    color:
        #18A79D;

    font-size:
        6px;

}


.pro-dashboard-insight {

    margin-top:
        13px;

    padding:
        10px 12px;

    border-radius:
        9px;

    background:
        linear-gradient(
            135deg,
            #F1F2FF,
            #ECFBF9
        );

}


.pro-dashboard-insight span,
.pro-dashboard-insight small {

    display:
        block;

    color:
        #777F94;

    font-size:
        7px;

}


.pro-dashboard-insight strong {

    display:
        block;

    margin:
        2px 0;

    color:
        #0AAA9E;

    font-size:
        15px;

}


/* ==========================================================
   PSICÓLOGA
========================================================== */

.pro-hero-person {

    position:
        absolute;

    z-index:
        4;

    right: -2px;

    bottom:
        -27px;

    width: 400px;

    pointer-events:
        none;

}


.pro-hero-person img {

    display:
        block;

    width:
        100%;

    height:
        auto;

}


/* ==========================================================
   CARDS FLUTUANTES
========================================================== */

.pro-floating-card {

    position:
        absolute;

    z-index:
        7;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    width:
        166px;

    min-height:
        61px;

    padding:
        10px 12px;

    border:
        1px solid rgba(230, 232, 242, .85);

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        0 13px 30px rgba(35, 42, 107, .10);

    backdrop-filter:
        blur(8px);

}


.pro-floating-icon {

    flex:
        0 0 34px;

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    color:
        var(--pro-primary);

    background:
        #F0F1FF;

    font-size:
        15px;

}


.pro-floating-card strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #303955;

    font-size:
        10px;

    line-height:
        1.2;

}


.pro-floating-card span {

    display:
        block;

    color:
        #8990A4;

    font-size:
        8px;

    line-height:
        1.3;

}


.pro-floating-card-1 {

    right: -18px;

    top:
        70px;

}


.pro-floating-card-1 strong {

    color:
        var(--pro-primary);

    font-size:
        16px;

}


.pro-floating-card-2 {

     right: -28px;

    top:
        151px;

}


.pro-floating-card-3 {

    right: -20px;

    top:
        232px;

}


.pro-floating-card-4 {

    right: -5px;

    top:
        313px;

}

/* ==========================================================
   RESPONSIVO DO HERO
   Consolidado para evitar regras duplicadas/sobrescritas.
========================================================== */

@media (max-width: 1200px) {

    .pro-hero-grid {
        gap: 30px;
    }

    .pro-dashboard-card {
        width: 490px;
    }

    .pro-floating-card {
        right: -10px;
    }

}


@media (max-width: 1050px) {

    .pro-hero {
        padding-top: 60px;
    }

    .pro-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
        min-width: 0;
    }

    .pro-hero-content {
        width: 100%;
        max-width: 680px;
        min-width: 0;
        margin: 0 auto;
        text-align: center;
    }

    .pro-hero-badge,
    .pro-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .pro-hero-benefits,
    .pro-hero-actions,
    .pro-hero-proof {
        justify-content: center;
    }

    .pro-hero-visual {
        width: 650px;
        max-width: 100%;
        margin: 20px auto 0;
    }

}


@media (max-width: 700px) {

    .pro-hero {
        width: 100%;
        padding: 44px 0 38px;
        overflow: hidden;
    }

    .pro-hero .pro-container {
        width: calc(100% - 30px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .pro-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .pro-hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .pro-hero-badge {
        max-width: 100%;
        margin: 0 auto 18px;
        padding: 7px 12px;
        justify-content: center;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
    }

    .pro-hero-title {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
        font-size: clamp(36px, 9.6vw, 44px);
        line-height: 1.055;
        letter-spacing: -1.35px;
        text-align: center;
        overflow-wrap: normal;
        word-break: normal;
    }

    .pro-hero-title span {
        display: block;
        width: 100%;
        max-width: 100%;
        white-space: normal !important;
    }

    .pro-hero-description {
        width: 100%;
        max-width: 540px;
        margin: 0 auto 27px;
        padding: 0;
        font-size: 15px;
        line-height: 1.65;
        text-align: center;
        box-sizing: border-box;
    }

    /* Os três benefícios permanecem LADO A LADO no mobile. */
    .pro-hero-benefits {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        justify-content: initial;
        gap: 8px;
        width: 100%;
        max-width: 520px;
        margin: 0 auto 29px;
    }

    .pro-hero-benefit {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        min-width: 0;
        padding: 0 2px;
        text-align: center;
    }

    .pro-hero-benefit-icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        margin: 0 0 8px;
        font-size: 16px;
    }

    .pro-hero-benefit strong {
        display: block;
        margin: 0 0 3px;
        font-size: 10.5px;
        line-height: 1.2;
        white-space: normal;
    }

    .pro-hero-benefit span {
        display: block;
        font-size: 8.5px;
        line-height: 1.3;
        white-space: normal;
    }

    .pro-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 11px;
        width: 100%;
        margin: 0 auto 27px;
    }

    .pro-hero-btn-primary,
    .pro-hero-btn-secondary {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        min-height: 53px;
        padding: 0 17px;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }

    .pro-hero-proof {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
    }

    .pro-hero-avatars {
        flex: 0 0 auto;
    }

    .pro-hero-proof-content {
        min-width: 0;
        text-align: left;
    }

    .pro-hero-proof-title {
        white-space: normal;
        font-size: 11px;
    }

    .pro-hero-rating {
        flex-wrap: wrap;
        font-size: 10px;
    }

    /* Visual do produto vai para baixo do conteúdo no mobile. */
    .pro-hero-visual {
        position: relative;
        width: 100%;
        max-width: 560px;
        min-width: 0;
        min-height: 375px;
        margin: 8px auto 0;
    }

    .pro-dashboard-card {
        top: 0;
        left: 50%;
        width: 520px;
        max-width: none;
        min-height: 410px;
        transform: translateX(-50%) scale(.66);
        transform-origin: top center;
    }

    .pro-hero-person {
        right: 0;
        bottom: -4px;
        width: 225px;
        max-width: 58%;
    }

    .pro-floating-card {
        width: 145px;
        padding: 8px;
        transform: scale(.78);
        transform-origin: right center;
    }

    .pro-floating-card-1 {
        top: 48px;
        right: -12px;
    }

    .pro-floating-card-2,
    .pro-floating-card-3 {
        display: none;
    }

    .pro-floating-card-4 {
        top: 265px;
        right: -7px;
    }

    .pro-hero-glow {
        width: 310px;
        height: 310px;
        top: 40px;
        right: -80px;
    }

    .pro-hero-dots {
        right: -18px;
        bottom: 18px;
    }

}


@media (max-width: 480px) {

    .pro-hero {
        padding-top: 38px;
    }

    .pro-hero-title {
        font-size: clamp(34px, 9.8vw, 39px);
        letter-spacing: -1px;
    }

    .pro-hero-description {
        font-size: 14px;
    }

    .pro-hero-benefits {
        gap: 5px;
        max-width: 100%;
    }

    .pro-hero-benefit {
        padding: 0 1px;
    }

    .pro-hero-benefit-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        margin-bottom: 7px;
        font-size: 15px;
    }

    .pro-hero-benefit strong {
        font-size: 9.5px;
        line-height: 1.16;
    }

    .pro-hero-benefit span {
        font-size: 7.8px;
        line-height: 1.25;
    }

    .pro-hero-proof {
        flex-direction: column;
        gap: 8px;
    }

    .pro-hero-proof-content {
        text-align: center;
    }

    .pro-hero-rating {
        justify-content: center;
    }

    .pro-hero-visual {
        min-height: 345px;
    }

    .pro-dashboard-sidebar {
        display: none;
    }

    .pro-dashboard-body {
        grid-template-columns: 1fr;
    }

    .pro-dashboard-card {
        width: 500px;
        min-height: 360px;
        transform: translateX(-50%) scale(.59);
    }

    .pro-hero-person {
        width: 205px;
        max-width: 61%;
        right: -3%;
    }

    .pro-floating-card {
        width: 135px;
        transform: scale(.70);
    }

    .pro-floating-card-1 {
        right: -22px;
    }

    .pro-floating-card-4 {
        top: 244px;
        right: -20px;
    }

}


@media (max-width: 370px) {

    .pro-hero-title {
        font-size: 33px;
    }

    .pro-hero-benefit strong {
        font-size: 9px;
    }

    .pro-hero-benefit span {
        font-size: 7.4px;
    }

}

/* ==========================================================
   02. AQUISIÇÃO DE PACIENTES
========================================================== */

.pro-acquisition {

    position: relative;

    padding: 90px 0 95px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafbff 48%,
            #ffffff 100%
        );

}


/* ==========================================================
   CABEÇALHO
========================================================== */

.pro-acquisition-header {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.pro-section-eyebrow {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--pro-primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .65px;

    text-transform: uppercase;

}


.pro-acquisition-header h2 {

    margin: 0 0 16px;

    color: var(--pro-dark);

    font-size: clamp(35px, 3vw, 46px);

    line-height: 1.12;

    letter-spacing: -1.4px;

}


.pro-acquisition-header h2 span {

    color: var(--pro-teal);

}


.pro-acquisition-header p {

    max-width: 680px;

    margin: 0 auto;

    color: var(--pro-text);

    font-size: 15px;

    line-height: 1.7;

}


/* ==========================================================
   FLUXO
========================================================== */

.pro-acquisition-flow {

    display: grid;

    grid-template-columns:
        1fr 42px
        1fr 42px
        1fr 42px
        1fr;

    align-items: center;

    margin-bottom: 75px;

}


/* ==========================================================
   CARD
========================================================== */

.pro-acquisition-step {

    position: relative;

    min-height: 285px;

    padding: 28px 23px 23px;

    border: 1px solid #E9EBF4;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(40, 48, 108, .055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.pro-acquisition-step:hover {

    transform: translateY(-5px);

    border-color: #D7DAF1;

    box-shadow:
        0 18px 42px rgba(40, 48, 108, .09);

}


.pro-acquisition-step.featured {

    border-color:
        rgba(19, 189, 179, .34);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #F5FFFD
        );

}


.pro-acquisition-number {

    position: absolute;

    top: 17px;
    right: 18px;

    color: #E2E5F3;

    font-size: 28px;

    font-weight: 800;

    line-height: 1;

}


.pro-acquisition-icon {

    width: 51px;
    height: 51px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 19px;

    border-radius: 15px;

    background: #F0F1FF;

    color: var(--pro-primary);

    font-size: 22px;

}


.pro-acquisition-step.featured
.pro-acquisition-icon {

    color: #079F97;

    background: #E9FAF8;

}


.pro-acquisition-badge {

    position: absolute;

    top: -11px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 10px;

    border-radius: 30px;

    background: var(--pro-teal);

    color: #ffffff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .5px;

    white-space: nowrap;

}


.pro-acquisition-step h3 {

    margin: 0 0 10px;

    color: #29314E;

    font-size: 16px;

    font-weight: 700;

}


.pro-acquisition-step p {

    min-height: 84px;

    margin: 0 0 18px;

    color: #767F95;

    font-size: 12px;

    line-height: 1.6;

}


.pro-acquisition-mini {

    display: flex;

    align-items: center;

    gap: 6px;

    padding-top: 14px;

    border-top: 1px solid #F0F1F5;

    color: #59627A;

    font-size: 10px;

    font-weight: 600;

}


.pro-acquisition-mini i {

    color: var(--pro-teal);

    font-size: 15px;

}


/* ==========================================================
   SETAS
========================================================== */

.pro-acquisition-arrow {

    display: flex;

    align-items: center;
    justify-content: center;

    color: #AAAEDF;

    font-size: 22px;

}


/* ==========================================================
   BLOCO PRO
========================================================== */

.pro-acquisition-pro {

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    gap: 70px;

    align-items: center;

    padding: 58px 65px;

    border: 1px solid #E7EAF3;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(19, 189, 179, .12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #F8FAFF,
            #FFFFFF
        );

}


/* ==========================================================
   SIMULAÇÃO DE BUSCA
========================================================== */

.pro-acquisition-pro-visual {

    position: relative;

}


.pro-search-window {

    max-width: 440px;

    padding: 15px;

    margin: 0 auto;

    border: 1px solid #E7E9F2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 22px 55px rgba(37, 44, 107, .11);

}


.pro-search-header {

    padding-bottom: 13px;

    border-bottom:
        1px solid #EEF0F5;

}


.pro-search-bar {

    height: 39px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 13px;

    border: 1px solid #E3E6F0;

    border-radius: 9px;

    background: #FAFBFD;

    color: #8B92A5;

    font-size: 10px;

}


.pro-search-bar i {

    color: var(--pro-primary);

    font-size: 14px;

}


/* RESULTADO */

.pro-search-result {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 76px;

    margin-top: 11px;

    padding: 10px 12px;

    border-radius: 12px;

}


.pro-result-featured {

    border: 1px solid
        rgba(46, 55, 164, .14);

    background:
        linear-gradient(
            135deg,
            #F5F6FF,
            #F1FFFC
        );

    box-shadow:
        0 8px 22px rgba(45, 54, 164, .07);

}


.pro-result-avatar {

    flex: 0 0 49px;

    width: 49px;
    height: 49px;

    overflow: hidden;

    margin-right: 11px;

    border-radius: 50%;

    background: #E7E9F2;

}


.pro-result-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.pro-result-name {

    display: flex;

    align-items: center;

    gap: 5px;

}


.pro-result-name strong {

    color: #303852;

    font-size: 11px;

}


.pro-result-verified {

    width: 14px;
    height: 14px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: var(--pro-primary);

    font-size: 8px;

}


.pro-result-info > span {

    display: block;

    margin-top: 3px;

    color: #687188;

    font-size: 9px;

}


.pro-result-info small {

    display: block;

    margin-top: 2px;

    color: #9AA0B0;

    font-size: 8px;

}


.pro-result-pro {

    position: absolute;

    top: 10px;
    right: 10px;

    padding: 4px 7px;

    border-radius: 20px;

    color: #ffffff;

    background: var(--pro-teal);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .4px;

}


/* RESULTADOS SECUNDÁRIOS */

.pro-search-result.faded {

    opacity: .47;

    border: 1px solid #EEF0F5;

}


.pro-result-avatar.skeleton {

    background:
        linear-gradient(
            135deg,
            #E6E8F0,
            #F1F2F6
        );

}


.pro-result-lines {

    flex: 1;

}


.pro-result-lines span {

    display: block;

    width: 58%;
    height: 7px;

    margin-bottom: 7px;

    border-radius: 20px;

    background: #E7E9F1;

}


.pro-result-lines span:last-child {

    width: 38%;

    margin-bottom: 0;

}


/* ==========================================================
   TEXTO PRO
========================================================== */

.pro-acquisition-pro-content h3 {

    max-width: 480px;

    margin: 0 0 17px;

    color: var(--pro-dark);

    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -1px;

}


.pro-acquisition-pro-content h3 span {

    color: var(--pro-teal);

}


.pro-acquisition-pro-content > p {

    max-width: 510px;

    margin: 0 0 23px;

    color: var(--pro-text);

    font-size: 14px;

    line-height: 1.7;

}


.pro-acquisition-pro-content > p strong {

    color: #38415E;

}


/* PONTOS */

.pro-acquisition-points {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 25px;

}


.pro-acquisition-points > div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #626B81;

    font-size: 12px;

}


.pro-acquisition-points i {

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #079F96;

    background: #E7F9F7;

    font-size: 13px;

}


.pro-acquisition-points strong {

    color: #323B57;

}


/* CTA */

.pro-acquisition-cta {

    min-height: 47px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border-radius: 9px;

    color: #ffffff;

    background: var(--pro-primary);

    box-shadow:
        0 8px 20px rgba(46, 55, 164, .17);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.pro-acquisition-cta:hover {

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(46, 55, 164, .24);

}


/* ==========================================================
   OBSERVAÇÃO
========================================================== */

.pro-acquisition-note {

    max-width: 720px;

    margin: 17px auto 0;

    color: #A0A5B4;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;

}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1050px) {

    .pro-acquisition-flow {

        grid-template-columns:
            1fr 30px
            1fr;

        gap: 0 10px;

    }


    .pro-acquisition-step:nth-of-type(3),
    .pro-acquisition-step:nth-of-type(4) {

        margin-top: 25px;

    }


    .pro-acquisition-flow
    .pro-acquisition-arrow:nth-of-type(2) {

        display: none;

    }


    .pro-acquisition-pro {

        gap: 40px;

        padding: 45px;

    }

}


@media (max-width: 800px) {

    .pro-acquisition {

        padding: 70px 0;

    }


    .pro-acquisition-flow {

        display: flex;

        flex-direction: column;

        gap: 12px;

        max-width: 480px;

        margin-left: auto;
        margin-right: auto;

    }


    .pro-acquisition-step {

        width: 100%;

        min-height: 0;

    }


    .pro-acquisition-step p {

        min-height: 0;

    }


    .pro-acquisition-arrow {

        transform: rotate(90deg);

        height: 28px;

    }


    .pro-acquisition-pro {

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 40px 28px;

    }


    .pro-acquisition-pro-content {

        text-align: center;

    }


    .pro-acquisition-pro-content h3,
    .pro-acquisition-pro-content > p {

        margin-left: auto;
        margin-right: auto;

    }


    .pro-acquisition-points {

        max-width: 410px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;

    }

}


@media (max-width: 520px) {

    .pro-acquisition-header h2 {

        font-size: 34px;

    }


    .pro-acquisition-header {

        margin-bottom: 40px;

    }


    .pro-acquisition-pro {

        padding:
            34px 20px;

        border-radius:
            20px;

    }


    .pro-acquisition-pro-content h3 {

        font-size: 29px;

    }

}

.color-hero-mid{
  color:#15a6bd;
}
.color-hero-end{
  color: var(--pro-primary) !important;
}

/* ==========================================================
   03. RECURSOS DO PRO
========================================================== */

.pro-features {

    padding: 95px 0;

    background: #ffffff;

}


/* ==========================================================
   CABEÇALHO
========================================================== */

.pro-features-header {

    max-width: 780px;

    margin:
        0 auto 50px;

    text-align:
        center;

}


.pro-features-header h2 {

    margin:
        0 0 17px;

    color:
        var(--pro-dark);

    font-size:
        clamp(35px, 3vw, 46px);

    line-height:
        1.12;

    letter-spacing:
        -1.4px;

}


.pro-features-header h2 span {

    display:
        block;

    color:
        var(--pro-teal);

}


.pro-features-header p {

    max-width:
        690px;

    margin:
        0 auto;

    color:
        var(--pro-text);

    font-size:
        15px;

    line-height:
        1.7;

}


/* ==========================================================
   GRID
========================================================== */

.pro-features-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}


/* ==========================================================
   CARD
========================================================== */

.pro-feature-card {

    position:
        relative;

    min-height:
        330px;

    padding:
        29px 27px;

    overflow:
        hidden;

    border:
        1px solid #E8EAF2;

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        0 12px 32px rgba(38, 46, 105, .045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.pro-feature-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #D8DBEE;

    box-shadow:
        0 19px 42px rgba(38, 46, 105, .085);

}


/* IA */

.pro-feature-card-ai {

    background:
        linear-gradient(
            145deg,
            #F7F7FF,
            #FFFFFF
        );

    border-color:
        rgba(46, 55, 164, .22);

}


/* PAGAMENTOS */

.pro-feature-card-payment {

    background:
        linear-gradient(
            145deg,
            #F2FFFC,
            #FFFFFF
        );

    border-color:
        rgba(19, 189, 179, .28);

}


/* ==========================================================
   LABEL
========================================================== */

.pro-feature-label {

    position:
        absolute;

    top:
        16px;

    right:
        17px;

    padding:
        5px 9px;

    border-radius:
        30px;

    color:
        #ffffff;

    background:
        var(--pro-primary);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        .4px;

}


/* ==========================================================
   ÍCONE
========================================================== */

.pro-feature-icon {

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        19px;

    border-radius:
        15px;

    background:
        #F0F1FF;

    color:
        var(--pro-primary);

    font-size:
        22px;

}


.pro-feature-card-payment
.pro-feature-icon {

    color:
        #079F96;

    background:
        #E8FAF8;

}


/* ==========================================================
   TEXTO
========================================================== */

.pro-feature-card h3 {

    margin:
        0 0 9px;

    color:
        #29314E;

    font-size:
        17px;

    font-weight:
        700;

}


.pro-feature-card > p {

    min-height:
        68px;

    margin:
        0 0 19px;

    color:
        #778096;

    font-size:
        14px;

    line-height:
        1.6;

}


/* ==========================================================
   LISTA
========================================================== */

.pro-feature-card ul {

    list-style:
        none;

    margin:
        0;

    padding:
        17px 0 0;

    border-top:
        1px solid #EFF0F5;

}


.pro-feature-card li {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        7px;

    margin-bottom:
        9px;

    color:
        #5F687F;

    font-size:
        12px;

    line-height:
        1.4;

}


.pro-feature-card li:last-child {

    margin-bottom:
        0;

}


.pro-feature-card li i {

    flex:
        0 0 16px;

    color:
        var(--pro-teal);

    font-size:
        14px;

}


.pro-feature-card li strong {

    color:
        #303955;

}


/* ==========================================================
   CTA INFERIOR
========================================================== */

.pro-features-cta {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    margin-top:
        35px;

    padding:
        28px 32px;

    border-radius:
        18px;

    color:
        #ffffff;

    background:
        linear-gradient(
            110deg,
            #2E37A4 0%,
            #3533B4 60%,
            #242A90 100%
        );

    box-shadow:
        0 15px 35px rgba(46, 55, 164, .16);

}


.pro-features-cta > div {

    max-width:
        620px;

}


.pro-features-cta > div span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        rgba(255, 255, 255, .7);

    font-size:
        10px;

    font-weight:
        600;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;

}


.pro-features-cta > div strong {

    display:
        block;

    color:
        #ffffff;

    font-size:
        20px;

    line-height:
        1.3;

}


.pro-features-cta > a {

    flex:
        0 0 auto;

    min-height:
        46px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    padding:
        0 19px;

    border-radius:
        9px;

    color:
        var(--pro-primary);

    background:
        #ffffff;

    font-size:
        11px;

    font-weight:
        700;

    text-decoration:
        none;

    box-shadow:
        0 7px 17px rgba(0, 0, 0, .08);

    transition:
        transform .2s ease;

}


.pro-features-cta > a:hover {

    color:
        var(--pro-primary);

    transform:
        translateY(-2px);

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .pro-features-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .pro-features {

        padding:
            70px 0;

    }


    .pro-features-grid {

        grid-template-columns:
            1fr;

    }


    .pro-feature-card {

        min-height:
            0;

    }


    .pro-feature-card > p {

        min-height:
            0;

    }


    .pro-features-cta {

        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            26px 23px;

    }


    .pro-features-cta > a {

        width:
            100%;

    }

}

/* ==========================================================
   04. RECEBIMENTOS
========================================================== */

.pro-payments {

    position: relative;

    padding:
        95px 0;

    background:
        linear-gradient(
            180deg,
            #F9FAFE 0%,
            #FFFFFF 100%
        );

}


/* ==========================================================
   BOX PRINCIPAL
========================================================== */

.pro-payments-box {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .95fr);

    gap:
        70px;

    align-items:
        center;

    padding:
        65px;

    overflow:
        hidden;

    border:
        1px solid #E6E9F2;

    border-radius:
        27px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(19,189,179,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F8FAFF 55%,
            #F5FFFD 100%
        );

    box-shadow:
        0 20px 55px rgba(35,45,105,.06);

}


/* ==========================================================
   TEXTO
========================================================== */

.pro-payments-content {

    position:
        relative;

    z-index:
        2;

}


.pro-payments-content h2 {

    margin:
        0 0 20px;

    color:
        var(--pro-dark);

    font-size:
        clamp(37px, 3.3vw, 49px);

    line-height:
        1.08;

    letter-spacing:
        -1.5px;

}


.pro-payments-content h2 span {

    display:
        block;

    color:
        var(--pro-teal);

}


.pro-payments-description {

    max-width:
        550px;

    margin:
        0 0 32px;

    color:
        var(--pro-text);

    font-size:
        15px;

    line-height:
        1.7;

}


.pro-payments-description strong {

    color:
        #37405D;

}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.pro-payments-benefits {

    display:
        flex;

    flex-direction:
        column;

    gap:
        21px;

}


.pro-payments-benefit {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        15px;

}


.pro-payments-benefit-icon {

    flex:
        0 0 47px;

    width:
        47px;

    height:
        47px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        14px;

    color:
        #079E95;

    background:
        #E9FAF8;

    font-size:
        18px;

}


.pro-payments-benefit-icon strong {

    font-size:
        14px;

}


.pro-payments-benefit h3 {

    margin:
        1px 0 4px;

    color:
        #313A56;

    font-size:
        14px;

}


.pro-payments-benefit p {

    max-width:
        390px;

    margin:
        0;

    color:
        #7C8498;

    font-size:
        11px;

    line-height:
        1.55;

}


/* ==========================================================
   CARD VISUAL
========================================================== */

.pro-payment-card {

    position:
        relative;

    z-index:
        2;

    padding:
        27px;

    border:
        1px solid #E7E9F2;

    border-radius:
        21px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 22px 55px rgba(37,45,105,.12);

}


/* HEADER */

.pro-payment-card-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding-bottom:
        19px;

    border-bottom:
        1px solid #EFF0F5;

}


.pro-payment-card-header span {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #8890A2;

    font-size:
        9px;

}


.pro-payment-card-header strong {

    color:
        #29324E;

    font-size:
        24px;

}


.pro-payment-status {

    display:
        flex;

    align-items:
        center;

    gap:
        4px;

    padding:
        6px 9px;

    border-radius:
        30px;

    color:
        #079C92;

    background:
        #E9FAF7;

    font-size:
        9px;

    font-weight:
        700;

}


/* ==========================================================
   FLUXO
========================================================== */

.pro-payment-flow {

    display:
        grid;

    grid-template-columns:
        1fr 28px
        1fr 28px
        1fr;

    align-items:
        start;

    margin:
        27px 0;

}


.pro-payment-flow-item {

    position:
        relative;

    text-align:
        center;

}


.pro-payment-flow-icon {

    width:
        55px;

    height:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        0 auto 9px;

    border-radius:
        17px;

    color:
        var(--pro-primary);

    background:
        #F0F1FF;

    font-size:
        20px;

    font-weight:
        800;

}


.pro-payment-flow-item.balance
.pro-payment-flow-icon {

    color:
        #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #3037B4,
            #4C45CD
        );

}


.pro-payment-flow-item > strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #3B435D;

    font-size:
        10px;

}


.pro-payment-flow-item > span {

    display:
        block;

    color:
        #9298A9;

    font-size:
        11px;

    line-height:
        1.35;

}


.pro-payment-flow-arrow {

    padding-top:
        19px;

    color:
        #AEB3D7;

    text-align:
        center;

    font-size:
        18px;

}


.pro-payment-zero {

    display:
        inline-block;

    margin-top:
        6px;

    padding:
        3px 7px;

    border-radius:
        30px;

    color:
        #079E95;

    background:
        #E7FAF8;

    font-size:
        7px;

    font-weight:
        800;

}


/* ==========================================================
   RESULTADO
========================================================== */

.pro-payment-result {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        13px;

    border-radius:
        13px;

    background:
        #EFFBF9;

}


.pro-payment-result-icon {

    flex:
        0 0 34px;

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        #FFFFFF;

    background:
        var(--pro-teal);

}


.pro-payment-result span {

    display:
        block;

    color:
        #879087;

    font-size:
        8px;

}


.pro-payment-result strong {

    display:
        block;

    margin-top:
        1px;

    color:
        #148D85;

    font-size:
        10px;

}


/* ==========================================================
   INTERMEDIADORAS
========================================================== */

.pro-payment-providers-title {

    margin:
        23px 0 11px;

    color:
        #8B91A2;

    font-size:
        9px;

    font-weight:
        600;

    text-align:
        center;

}


.pro-payment-providers {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        9px;

}


.pro-provider {

    height:
        62px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        9px 13px;

    border:
        1px solid #E7E9F1;

    border-radius:
        11px;

    background:
        #FFFFFF;

}


.pro-provider img {

    display:
        block;

    max-width:
        100%;

    max-height:
        31px;

    object-fit:
        contain;

}


/* ==========================================================
   TRUST BAR
========================================================== */

.pro-payments-trust {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        33px;

    margin-top:
        27px;

}


.pro-payments-trust > div {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    color:
        #697187;

    font-size:
        10px;

}


.pro-payments-trust i {

    color:
        var(--pro-teal);

    font-size:
        14px;

}


.pro-payments-trust strong {

    color:
        #343D59;

}


/* ==========================================================
   DISCLAIMER
========================================================== */

.pro-payments-disclaimer {

    max-width:
        800px;

    margin:
        15px auto 0;

    color:
        #A1A6B5;

    font-size:
        8px;

    line-height:
        1.55;

    text-align:
        center;

}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 950px) {

    .pro-payments-box {

        grid-template-columns:
            1fr;

        gap:
            48px;

        padding:
            48px;

    }


    .pro-payments-content {

        max-width:
            620px;

        margin:
            0 auto;

    }


    .pro-payments-visual {

        width:
            100%;

        max-width:
            540px;

        margin:
            0 auto;

    }

}


@media (max-width: 650px) {

    .pro-payments {

        padding:
            70px 0;

    }


    .pro-payments-box {

        gap:
            40px;

        padding:
            35px 22px;

        border-radius:
            20px;

    }


    .pro-payments-content h2 {

        font-size:
            35px;

    }


    .pro-payment-card {

        padding:
            21px 16px;

    }


    .pro-payment-flow {

        grid-template-columns:
            1fr 18px
            1fr 18px
            1fr;

    }


    .pro-payment-flow-icon {

        width:
            46px;

        height:
            46px;

        font-size:
            17px;

    }


    .pro-payment-flow-arrow {

        font-size:
            13px;

    }


    .pro-payment-providers {

        grid-template-columns:
            1fr;

    }


    .pro-provider {

        height:
            58px;

    }


    .pro-payments-trust {

        flex-direction:
            column;

        gap:
            10px;

        padding-left:
            5px;

    }

}

/* ==========================================================
   AJUSTE DE LEGIBILIDADE — CARD DE PAGAMENTO
========================================================== */

/* "Sessão confirmada" */
.pro-payment-card-header span {
    font-size: 11px;
}

/* R$ 200,00 */
.pro-payment-card-header strong {
    font-size: 27px;
}

/* Badge Pago */
.pro-payment-status {
    font-size: 10px;
    padding: 7px 11px;
}


/* ==========================================================
   FLUXO
========================================================== */

/* Paciente / Balance / Sua conta */
.pro-payment-flow-item > strong {
    font-size: 12px;
    margin-bottom: 4px;
}

/* realiza o pagamento
   organiza a cobrança
   recebe o pagamento */
.pro-payment-flow-item > span {
    font-size: 11px;
    line-height: 1.4;
}

/* 0% comissão */
.pro-payment-zero {
    font-size: 9px;
    padding: 4px 8px;
    margin-top: 7px;
}


/* ==========================================================
   RESULTADO
========================================================== */

/* "Você recebe" */
.pro-payment-result span {
    font-size: 10px;
}

/* "direto na instituição escolhida" */
.pro-payment-result strong {
    font-size: 12px;
    margin-top: 2px;
}


/* ==========================================================
   INTERMEDIADORAS
========================================================== */

/* "Escolha onde prefere receber" */
.pro-payment-providers-title {
    font-size: 11px;
    margin: 24px 0 13px;
}


/* ==========================================================
   AUMENTAR LEVEMENTE O CARD PARA DAR RESPIRO
========================================================== */

.pro-payment-card {
    padding: 30px;
}

.pro-payment-flow {
    margin: 30px 0;
}

.pro-payments-trust > div {
    font-size: 11px;
}

.pro-payments-trust i {
    font-size: 16px;
}

.pro-payments-disclaimer {
    font-size: 9.5px;
    line-height: 1.6;
}

/* ==========================================================
   05. DEPOIMENTO REAL
========================================================== */

.pro-testimonial {

    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8F9FE 100%
        );

}


/* ==========================================================
   CABEÇALHO
========================================================== */

.pro-testimonial-header {

    max-width: 730px;

    margin:
        0 auto 48px;

    text-align:
        center;

}


.pro-testimonial-header h2 {

    margin:
        0 0 16px;

    color:
        var(--pro-dark);

    font-size:
        clamp(35px, 3vw, 46px);

    line-height:
        1.12;

    letter-spacing:
        -1.4px;

}


.pro-testimonial-header h2 span {

    display:
        block;

    color:
        var(--pro-teal);

}


.pro-testimonial-header p {

    margin:
        0 auto;

    max-width:
        600px;

    color:
        var(--pro-text);

    font-size:
        15px;

    line-height:
        1.7;

}


/* ==========================================================
   BLOCO PRINCIPAL
========================================================== */

.pro-testimonial-featured {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .9fr);

    overflow:
        hidden;

    border:
        1px solid #E6E9F2;

    border-radius:
        26px;

    background:
        #FFFFFF;

    box-shadow:
        0 22px 60px rgba(36, 44, 105, .08);

}


/* ==========================================================
   VÍDEO
========================================================== */

.pro-testimonial-video {

    position:
        relative;

    min-height:
        470px;

    background:
        #1E2348;

}


.pro-video-link {

    position:
        absolute;

    inset:
        0;

    display:
        block;

    overflow:
        hidden;

}


.pro-video-link img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .4s ease;

}


.pro-video-link:hover img {

    transform:
        scale(1.025);

}


.pro-video-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(20, 25, 58, .02),
            rgba(20, 25, 58, .35)
        );

}


/* PLAY */

.pro-video-play {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        74px;

    height:
        74px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    transform:
        translate(-50%, -50%);

    border-radius:
        50%;

    color:
        var(--pro-primary);

    background:
        #FFFFFF;

    box-shadow:
        0 12px 35px rgba(0,0,0,.16);

    font-size:
        27px;

    transition:
        transform .2s ease;

}


.pro-video-link:hover
.pro-video-play {

    transform:
        translate(-50%, -50%)
        scale(1.07);

}


/* LABEL */

.pro-video-label {

    position:
        absolute;

    left:
        24px;

    bottom:
        23px;

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        8px 12px;

    border-radius:
        30px;

    color:
        #FFFFFF;

    background:
        rgba(25, 31, 67, .77);

    backdrop-filter:
        blur(8px);

    font-size:
        10px;

    font-weight:
        600;

}


.pro-video-live {

    color:
        #25D2C4;

}


/* ==========================================================
   CONTEÚDO DO DEPOIMENTO
========================================================== */

.pro-testimonial-content {

    position:
        relative;

    padding:
        53px 46px;

}


.pro-testimonial-stars {

    margin-bottom:
        18px;

    color:
        #FFB400;

    font-size:
        17px;

    letter-spacing:
        2px;

}


.pro-testimonial-quote-icon {

    position:
        absolute;

    top:
        33px;

    right:
        38px;

    color:
        #EEF0FA;

    font-size:
        100px;

    font-family:
        Georgia, serif;

    line-height:
        1;

}


.pro-testimonial-content blockquote {

    position:
        relative;

    z-index:
        2;

    margin:
        0 0 27px;

    padding:
        0;

    border:
        0;

}


.pro-testimonial-content blockquote p {

    margin:
        0;

    color:
        #38405A;

    font-size:
        20px;

    line-height:
        1.55;

    font-weight:
        500;

}


/* ==========================================================
   PROFISSIONAL
========================================================== */

.pro-testimonial-person {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.pro-testimonial-avatar {

    flex:
        0 0 52px;

    width:
        52px;

    height:
        52px;

    overflow:
        hidden;

    border-radius:
        50%;

    border:
        2px solid #FFFFFF;

    box-shadow:
        0 5px 15px rgba(30, 40, 90, .14);

}


.pro-testimonial-avatar img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}


.pro-testimonial-person-info {

    flex:
        1;

}


.pro-testimonial-person-info strong {

    display:
        block;

    color:
        #303955;

    font-size:
        13px;

}


.pro-testimonial-person-info span {

    display:
        block;

    margin-top:
        2px;

    color:
        #747D93;

    font-size:
        10px;

}


.pro-testimonial-person-info small {

    display:
        block;

    margin-top:
        1px;

    color:
        #9AA0AF;

    font-size:
        9px;

}


/* BADGE PRO */

.pro-testimonial-verified {

    display:
        flex;

    align-items:
        center;

    gap:
        5px;

    padding:
        6px 9px;

    border-radius:
        30px;

    color:
        #079F96;

    background:
        #E8FAF8;

    font-size:
        9px;

    font-weight:
        800;

}


.pro-testimonial-divider {

    height:
        1px;

    margin:
        29px 0 23px;

    background:
        #ECEEF4;

}


/* ==========================================================
   CTA DO VÍDEO
========================================================== */

.pro-testimonial-video-cta {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

}


.pro-testimonial-video-icon {

    flex:
        0 0 40px;

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    color:
        var(--pro-primary);

    background:
        #EFF0FF;

    font-size:
        19px;

}


.pro-testimonial-video-cta strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #38405B;

    font-size:
        12px;

}


.pro-testimonial-video-cta span {

    display:
        block;

    color:
        #9298A8;

    font-size:
        11px;

}


/* ==========================================================
   TRUST
========================================================== */

.pro-testimonial-trust {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        34px;

    margin-top:
        25px;

}


.pro-testimonial-trust > div {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    color:
        #737C91;

    font-size:
        10px;

}


.pro-testimonial-trust i {

    color:
        var(--pro-teal);

    font-size:
        15px;

}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 900px) {

    .pro-testimonial-featured {

        grid-template-columns:
            1fr;

    }


    .pro-testimonial-video {

        min-height:
            420px;

    }

}


@media (max-width: 600px) {

    .pro-testimonial {

        padding:
            70px 0;

    }


    .pro-testimonial-video {

        min-height:
            320px;

    }


    .pro-testimonial-content {

        padding:
            35px 25px;

    }


    .pro-testimonial-content blockquote p {

        font-size:
            17px;

    }


    .pro-testimonial-person {

        align-items:
            flex-start;

    }


    .pro-testimonial-verified {

        display:
            none;

    }


    .pro-testimonial-trust {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            9px;

    }

}

/* ==========================================================
   PLAYER HLS - DEPOIMENTO PRO
========================================================== */

.pro-hls-container {

    width: 100%;

    max-width: 960px;

    overflow: hidden;

    border-radius: 18px;

    background: #000;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .28);

}


.pro-hls-video {

    display: block;

    width: 100%;

    height: auto;

    max-height: 85vh;

    background: #000;

    object-fit: contain;

}


/* melhora o comportamento do GLightbox */

.glightbox-container .gslide-inline {

    background: transparent;

}


.glightbox-container .ginlined-content {

    padding: 0 !important;

    background: transparent;

}


/* ==========================================================
   06. PLANOS
========================================================== */

.pro-pricing {

    position: relative;

    padding:
        105px 0;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 70% 23%,
            rgba(19, 189, 179, .06),
            transparent 28%
        ),

        radial-gradient(
            circle at 40% 33%,
            rgba(46, 55, 164, .055),
            transparent 32%
        ),

        #FFFFFF;

}


/* ==========================================================
   CABEÇALHO
========================================================== */

.pro-pricing-header {

    max-width:
        750px;

    margin:
        0 auto 58px;

    text-align:
        center;

}


.pro-pricing-header h2 {

    margin:
        0 0 17px;

    color:
        var(--pro-dark);

    font-size:
        clamp(37px, 3.2vw, 49px);

    line-height:
        1.08;

    letter-spacing:
        -1.6px;

}


.pro-pricing-header h2 span {

    color:
        var(--pro-teal);

}


.pro-pricing-header p {

    max-width:
        640px;

    margin:
        0 auto;

    color:
        var(--pro-text);

    font-size:
        15px;

    line-height:
        1.7;

}


/* ==========================================================
   GRID
========================================================== */

.pro-pricing-grid {

    display:
        grid;

    grid-template-columns:
        minmax(0, .78fr)
        minmax(0, 1.22fr);

    gap:
        25px;

    max-width:
        980px;

    margin:
        0 auto;

    align-items:
        stretch;

}


/* ==========================================================
   CARDS
========================================================== */

.pro-pricing-card {

    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    border-radius:
        24px;

    background:
        #FFFFFF;

}


/* FREE */

.pro-pricing-free {

    margin:
        28px 0;

    padding:
        34px;

    border:
        1px solid #E6E9F1;

    box-shadow:
        0 15px 38px rgba(37, 45, 103, .05);

}


/* PRO */

.pro-pricing-pro {

    padding:
        43px 40px 35px;

    border:
        2px solid var(--pro-primary);

    background:

        radial-gradient(
            circle at 96% 2%,
            rgba(19, 189, 179, .13),
            transparent 25%
        ),

        linear-gradient(
            150deg,
            #FFFFFF 0%,
            #F8F9FF 100%
        );

    box-shadow:
        0 28px 70px rgba(46, 55, 164, .15);

}


/* ==========================================================
   RECOMENDADO
========================================================== */

.pro-pricing-popular {

    position:
        absolute;

    z-index:
        5;

    top:
        -15px;

    left:
        50%;

    transform:
        translateX(-50%);

    padding:
        7px 16px;

    border-radius:
        30px;

    color:
        #FFFFFF;

    background:
        var(--pro-primary);

    box-shadow:
        0 7px 18px rgba(46, 55, 164, .22);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .65px;

    white-space:
        nowrap;

}


/* ==========================================================
   NOME DO PLANO
========================================================== */

.pro-pricing-plan {

    display:
        block;

    margin-bottom:
        12px;

    color:
        var(--pro-primary);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .7px;

}


.pro-pricing-pro-name {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

}


.pro-pricing-pro-badge {

    margin-bottom:
        12px;

    padding:
        4px 8px;

    border-radius:
        30px;

    color:
        #079D94;

    background:
        #E7FAF7;

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        .4px;

}


/* ==========================================================
   PREÇO
========================================================== */

.pro-pricing-price {

    display:
        flex;

    align-items:
        flex-end;

    margin-bottom:
        13px;

    color:
        var(--pro-dark);

}


.pro-pricing-price .currency {

    margin:
        0 5px 8px 0;

    font-size:
        16px;

    font-weight:
        700;

}


.pro-pricing-price strong {

    font-size:
        52px;

    line-height:
        .92;

    letter-spacing:
        -2.5px;

}


.pro-pricing-pro
.pro-pricing-price strong {

    font-size:
        64px;

}


.pro-pricing-price .period {

    margin:
        0 0 7px 6px;

    color:
        #8990A2;

    font-size:
        11px;

}


/* ==========================================================
   CAFÉ
========================================================== */

.pro-pricing-coffee {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    margin:
        18px 0 17px;

    padding:
        13px 14px;

    border:
        1px solid rgba(19, 189, 179, .24);

    border-radius:
        12px;

    background:

        linear-gradient(
            135deg,
            #EFFCFA,
            #FAFFFE
        );

}


.pro-pricing-coffee-icon {

    flex:
        0 0 39px;

    width:
        39px;

    height:
        39px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    background:
        #FFFFFF;

    box-shadow:
        0 5px 14px rgba(25, 95, 87, .08);

    font-size:
        20px;

}


.pro-pricing-coffee-content {

    flex:
        1;

}


.pro-pricing-coffee-content > strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #138B82;

    font-size:
        12px;

    font-weight:
        800;

}


.pro-pricing-coffee-content span {

    display:
        block;

    color:
        #6F817C;

    font-size:
        11px;

    line-height:
        1.4;

}


.pro-pricing-coffee-content b {

    color:
        #128B82;

    font-weight:
        800;

}


/* ==========================================================
   DESCRIÇÕES
========================================================== */

.pro-pricing-card-header > p {

    margin:
        0;

    color:
        #7C8497;

    font-size:
        14px;

    line-height:
        1.6;

}


.pro-pricing-pro-description {

    max-width:
        500px;

}


/* ==========================================================
   DIVISOR
========================================================== */

.pro-pricing-divider {

    height:
        1px;

    margin:
        25px 0 22px;

    background:
        #ECEEF4;

}


/* ==========================================================
   GRUPOS
========================================================== */

.pro-pricing-benefit-group {

    margin-bottom:
        18px;

}


.pro-pricing-group-label {

    display:
        block;

    margin-bottom:
        12px;

    color:
        #9298A8;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .55px;

}


/* ==========================================================
   LISTAS
========================================================== */

.pro-pricing-list-title {

    margin-bottom:
        16px;

    color:
        #3C445E;

    font-size:
        11px;

    font-weight:
        700;

}


.pro-pricing-list {

    flex:
        1;

    list-style:
        none;

    margin:
        0;

    padding:
        0;

}


.pro-pricing-list li {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        9px;

    margin-bottom:
        12px;

    color:
        #60697E;

    font-size:
        12px;

    line-height:
        1.45;

}


.pro-pricing-list li:last-child {

    margin-bottom:
        0;

}


.pro-pricing-list li i {

    flex:
        0 0 20px;

    width:
        20px;

    height:
        20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        #079D94;

    background:
        #E7FAF7;

    font-size:
        11px;

}


.pro-pricing-list li strong {

    color:
        #333C58;

}


.pro-pricing-list li.highlight strong {

    color:
        var(--pro-primary);

}


/* DESABILITADO */

.pro-pricing-list li.disabled {

    color:
        #A1A6B2;

}


.pro-pricing-list li.disabled i {

    color:
        #ABB0BA;

    background:
        #F1F2F5;

}


/* ==========================================================
   PAGAMENTO SEM COMISSÃO
========================================================== */

.pro-pricing-payment-box {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        3px;

    padding:
        14px;

    border:
        1px solid rgba(19, 189, 179, .20);

    border-radius:
        12px;

    background:
        #F0FBF9;

}


.pro-pricing-payment-icon {

    flex:
        0 0 42px;

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    color:
        #FFFFFF;

    background:
        var(--pro-teal);

}


.pro-pricing-payment-icon strong {

    font-size:
        12px;

}


.pro-pricing-payment-box > div:last-child {

    flex:
        1;

}


.pro-pricing-payment-box
> div:last-child
> strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #168A82;

    font-size:
        12px;

}


.pro-pricing-payment-box
> div:last-child
> span {

    display:
        block;

    color:
        #6D817D;

    font-size:
        11px;

    line-height:
        1.45;

}


/* ==========================================================
   BOTÕES
========================================================== */

.pro-pricing-btn {

    min-height:
        51px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    width:
        100%;

    border-radius:
        10px;

    font-size:
        12px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


/* FREE */

.pro-pricing-free-footer {

    margin-top:
        auto;

    padding-top:
        26px;

}


.pro-pricing-free-footer > span {

    display:
        block;

    margin-bottom:
        9px;

    color:
        #9298A8;

    font-size:
        11px;

    text-align:
        center;

}


.pro-pricing-btn-free {

    color:
        var(--pro-primary);

    border:
        1px solid #B9BDE1;

    background:
        #FFFFFF;

}


.pro-pricing-btn-free:hover {

    color:
        var(--pro-primary);

    border-color:
        var(--pro-primary);

    transform:
        translateY(-2px);

}


/* PRO */

.pro-pricing-btn-pro {

    margin-top:
        24px;

    color:
        #FFFFFF;

    background:

        linear-gradient(
            135deg,
            #3138B8,
            #272D9F
        );

    box-shadow:
        0 12px 27px rgba(46, 55, 164, .22);

}


.pro-pricing-btn-pro:hover {

    color:
        #FFFFFF;

    transform:
        translateY(-2px);

    box-shadow:
        0 17px 35px rgba(46, 55, 164, .29);

}


.pro-pricing-btn-pro > span {

    font-size:
        18px;

}


/* ==========================================================
   SEGURANÇA
========================================================== */

.pro-pricing-security {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        8px 17px;

    margin-top:
        13px;

}


.pro-pricing-security > span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    color:
        #8A90A1;

    font-size:
        11px;

}


.pro-pricing-security i {

    color:
        var(--pro-teal);

    font-size:
        12px;

}


/* ==========================================================
   BLOCO INFERIOR - PERSPECTIVA DE VALOR
========================================================== */

.pro-pricing-perspective {

    max-width:
        890px;

    display:
        grid;

    grid-template-columns:
        1fr auto;

    gap:
        30px;

    align-items:
        center;

    margin:
        36px auto 0;

    padding:
        22px 25px;

    border:
        1px solid #E4E7F0;

    border-radius:
        16px;

    background:
        linear-gradient(
            135deg,
            #FAFBFE,
            #F7FFFD
        );

    box-shadow:
        0 10px 28px rgba(38, 46, 105, .04);

}


/* LADO ESQUERDO */

.pro-pricing-perspective-coffee {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

}


.pro-pricing-perspective-icon {

    flex:
        0 0 48px;

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        14px;

    background:
        #FFFFFF;

    box-shadow:
        0 6px 17px rgba(30, 50, 80, .07);

    font-size:
        23px;

}


.pro-pricing-perspective-coffee
> div:last-child
> span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #128F86;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .55px;

}


.pro-pricing-perspective-coffee
> div:last-child
> strong {

    display:
        block;

    max-width:
        430px;

    color:
        #39425D;

    font-size:
        13px;

    line-height:
        1.45;

}


/* BENEFÍCIOS */

.pro-pricing-perspective-features {

    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        flex-end;

    gap:
        8px;

    max-width:
        270px;

}


.pro-pricing-perspective-features span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    padding:
        6px 9px;

    border:
        1px solid #E5E8F1;

    border-radius:
        30px;

    color:
        #6D758B;

    background:
        #FFFFFF;

    font-size:
        8px;

    font-weight:
        600;

}


.pro-pricing-perspective-features i {

    color:
        var(--pro-primary);

    font-size:
        11px;

}


/* ==========================================================
   NOTA
========================================================== */

.pro-pricing-coffee-note {

    max-width:
        700px;

    margin:
        11px auto 0;

    color:
        #A5A9B5;

    font-size:
        10px;

    line-height:
        1.5;

    text-align:
        center;

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 850px) {

    .pro-pricing-grid {

        grid-template-columns:
            1fr;

        max-width:
            570px;

    }


    .pro-pricing-free {

        margin:
            0;

    }


    .pro-pricing-pro {

        margin-top:
            24px;

    }


    .pro-pricing-perspective {

        grid-template-columns:
            1fr;

    }


    .pro-pricing-perspective-features {

        justify-content:
            flex-start;

        max-width:
            none;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 550px) {

    .pro-pricing {

        padding:
            75px 0;

    }


    .pro-pricing-header {

        margin-bottom:
            45px;

    }


    .pro-pricing-card {

        border-radius:
            20px;

    }


    .pro-pricing-free {

        padding:
            29px 23px;

    }


    .pro-pricing-pro {

        padding:
            38px 23px 29px;

    }


    .pro-pricing-price strong {

        font-size:
            49px;

    }


    .pro-pricing-pro
    .pro-pricing-price strong {

        font-size:
            56px;

    }


    .pro-pricing-coffee {

        align-items:
            flex-start;

    }


    .pro-pricing-security {

        flex-direction:
            column;

        align-items:
            center;

    }


    .pro-pricing-perspective {

        padding:
            19px;

    }


    .pro-pricing-perspective-coffee {

        align-items:
            flex-start;

    }


    .pro-pricing-perspective-features {

        gap:
            6px;

    }

}

/* ==========================================================
   07. FAQ
========================================================== */

.pro-faq {

    position: relative;

    padding:
        100px 0;

    background:
        linear-gradient(
            180deg,
            #F8F9FD 0%,
            #FFFFFF 100%
        );

}


/* ==========================================================
   BOX
========================================================== */

.pro-faq-box {

    display:
        grid;

    grid-template-columns:
        minmax(0, .72fr)
        minmax(0, 1.28fr);

    gap:
        75px;

    align-items:
        start;

    padding:
        58px 62px;

    border:
        1px solid #E6E9F2;

    border-radius:
        26px;

    background:
        #FFFFFF;

    box-shadow:
        0 18px 50px rgba(38, 46, 105, .055);

}


/* ==========================================================
   INTRO
========================================================== */

.pro-faq-intro {

    position:
        sticky;

    top:
        125px;

}


.pro-faq-intro h2 {

    max-width:
        410px;

    margin:
        0 0 18px;

    color:
        var(--pro-dark);

    font-size:
        clamp(35px, 3vw, 44px);

    line-height:
        1.1;

    letter-spacing:
        -1.4px;

}


.pro-faq-intro h2 span {

    display:
        block;

    color:
        var(--pro-teal);

}


.pro-faq-intro > p {

    max-width:
        400px;

    margin:
        0;

    color:
        var(--pro-text);

    font-size:
        14px;

    line-height:
        1.7;

}


/* ==========================================================
   SUPORTE
========================================================== */

.pro-faq-support {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        13px;

    margin-top:
        34px;

    padding:
        18px;

    border:
        1px solid #E7E9F2;

    border-radius:
        15px;

    background:
        linear-gradient(
            135deg,
            #F8F9FF,
            #F4FFFD
        );

}


.pro-faq-support-icon {

    flex:
        0 0 43px;

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    color:
        var(--pro-primary);

    background:
        #EEF0FF;

    font-size:
        19px;

}


.pro-faq-support strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #38415B;

    font-size:
        11px;

}


.pro-faq-support span {

    display:
        block;

    color:
        #8A91A3;

    font-size:
        9px;

    line-height:
        1.45;

}


.pro-faq-support a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    margin-top:
        9px;

    color:
        var(--pro-primary);

    font-size:
        10px;

    font-weight:
        700;

    text-decoration:
        none;

}


.pro-faq-support a i {

    transition:
        transform .2s ease;

}


.pro-faq-support a:hover i {

    transform:
        translateX(3px);

}


/* ==========================================================
   FAQ LIST
========================================================== */

.pro-faq-list {

    display:
        flex;

    flex-direction:
        column;

}


/* ==========================================================
   ITEM
========================================================== */

.pro-faq-item {

    border-bottom:
        1px solid #EAECF2;

}


.pro-faq-item:first-child {

    border-top:
        1px solid #EAECF2;

}


/* remove marcador padrão */

.pro-faq-item summary {

    list-style:
        none;

}


.pro-faq-item summary::-webkit-details-marker {

    display:
        none;

}


/* ==========================================================
   PERGUNTA
========================================================== */

.pro-faq-item summary {

    min-height:
        70px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    padding:
        0 4px;

    color:
        #303953;

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1.4;

    cursor:
        pointer;

    user-select:
        none;

}


/* ==========================================================
   + / -
========================================================== */

.pro-faq-plus {

    position:
        relative;

    flex:
        0 0 30px;

    width:
        30px;

    height:
        30px;

    border-radius:
        50%;

    background:
        #F0F1FF;

}


.pro-faq-plus::before,
.pro-faq-plus::after {

    content:
        "";

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        11px;

    height:
        2px;

    border-radius:
        5px;

    background:
        var(--pro-primary);

    transform:
        translate(-50%, -50%);

    transition:
        transform .2s ease,
        opacity .2s ease;

}


.pro-faq-plus::after {

    transform:
        translate(-50%, -50%)
        rotate(90deg);

}


.pro-faq-item[open]
.pro-faq-plus::after {

    opacity:
        0;

    transform:
        translate(-50%, -50%)
        rotate(0deg);

}


/* ==========================================================
   ABERTO
========================================================== */

.pro-faq-item[open] summary {

    color:
        var(--pro-primary);

}


.pro-faq-item[open]
.pro-faq-plus {

    background:
        #EAF9F7;

}


.pro-faq-item[open]
.pro-faq-plus::before {

    background:
        var(--pro-teal);

}


/* ==========================================================
   RESPOSTA
========================================================== */

.pro-faq-answer {

    padding:
        0 52px 24px 4px;

}


.pro-faq-answer p {

    margin:
        0 0 10px;

    color:
        #737C91;

    font-size:
        12px;

    line-height:
        1.7;

}


.pro-faq-answer p:last-child {

    margin-bottom:
        0;

}


.pro-faq-answer strong {

    color:
        #3E475F;

}


/* ==========================================================
   DESTAQUE INTERNO
========================================================== */

.pro-faq-highlight {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-top:
        4px;

    padding:
        8px 11px;

    border-radius:
        9px;

    color:
        #168D84;

    background:
        #EFFBF9;

    font-size:
        10px;

    font-weight:
        700;

}


.pro-faq-highlight i {

    color:
        var(--pro-teal);

    font-size:
        14px;

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .pro-faq-box {

        grid-template-columns:
            1fr;

        gap:
            45px;

        padding:
            45px;

    }


    .pro-faq-intro {

        position:
            static;

        max-width:
            650px;

        margin:
            0 auto;

        text-align:
            center;

    }


    .pro-faq-intro h2,
    .pro-faq-intro > p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .pro-faq-support {

        max-width:
            430px;

        margin-left:
            auto;

        margin-right:
            auto;

        text-align:
            left;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .pro-faq {

        padding:
            70px 0;

    }


    .pro-faq-box {

        gap:
            35px;

        padding:
            36px 22px;

        border-radius:
            20px;

    }


    .pro-faq-intro h2 {

        font-size:
            34px;

    }


    .pro-faq-item summary {

        min-height:
            66px;

        gap:
            15px;

        font-size:
            13px;

    }


    .pro-faq-plus {

        flex-basis:
            28px;

        width:
            28px;

        height:
            28px;

    }


    .pro-faq-answer {

        padding:
            0 38px 22px 2px;

    }


    .pro-faq-answer p {

        font-size:
            11px;

    }

}

/* ==========================================================
   08. CTA FINAL
========================================================== */

.pro-final-cta {

    padding:
        95px 0 105px;

    background:
        #FFFFFF;

}


/* ==========================================================
   BOX
========================================================== */

.pro-final-cta-box {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap:
        65px;

    align-items:
        center;

    min-height:
        520px;

    padding:
        65px 70px;

    overflow:
        hidden;

    border-radius:
        30px;

    background:

        linear-gradient(
            125deg,
            #252D9D 0%,
            #3038B7 52%,
            #272D9F 100%
        );

    box-shadow:
        0 28px 70px rgba(46, 55, 164, .20);

}


/* ==========================================================
   DECORAÇÕES
========================================================== */

.pro-final-cta-glow {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

}


.pro-final-cta-glow-1 {

    width:
        420px;

    height:
        420px;

    top:
        -230px;

    right:
        -70px;

    background:
        rgba(19, 189, 179, .18);

}


.pro-final-cta-glow-2 {

    width:
        330px;

    height:
        330px;

    bottom:
        -220px;

    left:
        25%;

    background:
        rgba(255, 255, 255, .06);

}


.pro-final-cta-dots {

    position:
        absolute;

    right:
        28px;

    bottom:
        25px;

    width:
        110px;

    height:
        110px;

    opacity:
        .22;

    background-image:
        radial-gradient(
            #FFFFFF 1.3px,
            transparent 1.3px
        );

    background-size:
        11px 11px;

}


/* ==========================================================
   CONTEÚDO
========================================================== */

.pro-final-cta-content {

    position:
        relative;

    z-index:
        3;

}


.pro-final-cta-eyebrow {

    display:
        inline-block;

    margin-bottom:
        15px;

    color:
        #6FE6DC;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .7px;

}


.pro-final-cta-content h2 {

    max-width:
        560px;

    margin:
        0 0 20px;

    color:
        #FFFFFF;

    font-size:
        clamp(40px, 3.4vw, 53px);

    line-height:
        1.06;

    letter-spacing:
        -1.8px;

}


.pro-final-cta-content h2 span {

    display:
        block;

    color:
        #66DED5;

}


.pro-final-cta-content > p {

    max-width:
        550px;

    margin:
        0 0 28px;

    color:
        rgba(255, 255, 255, .75);

    font-size:
        15px;

    line-height:
        1.7;

}


/* ==========================================================
   PREÇO
========================================================== */

.pro-final-cta-price {

    display:
        flex;

    align-items:
        center;

    gap:
        22px;

    margin-bottom:
        27px;

}


.pro-final-cta-price-main {

    display:
        flex;

    align-items:
        flex-end;

    color:
        #FFFFFF;

}


.pro-final-cta-price-main > span {

    margin:
        0 5px 8px 0;

    font-size:
        16px;

    font-weight:
        700;

}


.pro-final-cta-price-main strong {

    font-size:
        48px;

    line-height:
        .9;

    letter-spacing:
        -2px;

}


.pro-final-cta-price-main small {

    margin:
        0 0 6px 5px;

    color:
        rgba(255, 255, 255, .62);

    font-size:
        10px;

}


/* CAFÉ */

.pro-final-cta-coffee {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    padding-left:
        20px;

    border-left:
        1px solid rgba(255, 255, 255, .20);

}


.pro-final-cta-coffee > span {

    font-size:
        22px;

}


.pro-final-cta-coffee strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #FFFFFF;

    font-size:
        11px;

}


.pro-final-cta-coffee small {

    display:
        block;

    color:
        rgba(255, 255, 255, .60);

    font-size:
        10px;

}


/* ==========================================================
   BOTÃO
========================================================== */

.pro-final-cta-actions {

    margin-bottom:
        18px;

}


.pro-final-cta-button {

    min-height:
        55px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    padding:
        0 25px;

    border-radius:
        11px;

    color:
        var(--pro-primary);

    background:
        #FFFFFF;

    box-shadow:
        0 12px 30px rgba(15, 20, 70, .18);

    font-size:
        13px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.pro-final-cta-button:hover {

    color:
        var(--pro-primary);

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px rgba(15, 20, 70, .24);

}


.pro-final-cta-button > span {

    font-size:
        19px;

}


/* ==========================================================
   TRUST
========================================================== */

.pro-final-cta-trust {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px 18px;

}


.pro-final-cta-trust span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    color:
        rgba(255, 255, 255, .65);

    font-size:
        11px;

}


.pro-final-cta-trust i {

    color:
        #69E0D7;

    font-size:
        13px;

}


/* ==========================================================
   VISUAL
========================================================== */

.pro-final-cta-visual {

    position:
        relative;

    z-index:
        3;

}


/* ==========================================================
   DASHBOARD
========================================================== */

.pro-final-dashboard {

    padding:
        25px;

    border:
        1px solid rgba(255, 255, 255, .17);

    border-radius:
        21px;

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        0 26px 60px rgba(20, 24, 80, .25);

    transform:
        rotate(1deg);

}


.pro-final-dashboard-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding-bottom:
        18px;

    margin-bottom:
        16px;

    border-bottom:
        1px solid #ECEEF4;

}


.pro-final-dashboard-top span {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #9096A7;

    font-size:
        8px;

}


.pro-final-dashboard-top strong {

    color:
        #343D58;

    font-size:
        13px;

}


.pro-final-dashboard-status {

    padding:
        5px 8px;

    border-radius:
        20px;

    color:
        #FFFFFF;

    background:
        var(--pro-primary);

    font-size:
        7px;

    font-weight:
        800;

}


/* ==========================================================
   CARDS
========================================================== */

.pro-final-dashboard-cards {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        10px;

}


.pro-final-dashboard-card {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    min-height:
        72px;

    padding:
        11px;

    border:
        1px solid #EBEDF3;

    border-radius:
        12px;

    background:
        #FAFBFD;

}


.pro-final-dashboard-icon {

    flex:
        0 0 36px;

    width:
        36px;

    height:
        36px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    color:
        var(--pro-primary);

    background:
        #EEF0FF;

    font-size:
        16px;

}


.pro-final-dashboard-card span {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #969CAD;

    font-size:
        7px;

}


.pro-final-dashboard-card strong {

    display:
        block;

    color:
        #414A64;

    font-size:
        9px;

    line-height:
        1.35;

}


/* ==========================================================
   RESULTADO
========================================================== */

.pro-final-dashboard-result {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    margin-top:
        13px;

    padding:
        13px;

    border-radius:
        13px;

    background:
        linear-gradient(
            135deg,
            #EEF1FF,
            #EBFAF8
        );

}


.pro-final-dashboard-result-icon {

    flex:
        0 0 39px;

    width:
        39px;

    height:
        39px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    color:
        #FFFFFF;

    background:
        var(--pro-teal);

    font-size:
        17px;

}


.pro-final-dashboard-result span {

    display:
        block;

    color:
        #878E9F;

    font-size:
        8px;

}


.pro-final-dashboard-result strong {

    display:
        block;

    margin-top:
        2px;

    color:
        #138B82;

    font-size:
        10px;

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .pro-final-cta-box {

        grid-template-columns:
            1fr;

        gap:
            50px;

        padding:
            55px;

    }


    .pro-final-cta-content {

        text-align:
            center;

    }


    .pro-final-cta-content h2,
    .pro-final-cta-content > p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .pro-final-cta-price,
    .pro-final-cta-trust {

        justify-content:
            center;

    }


    .pro-final-cta-visual {

        max-width:
            540px;

        width:
            100%;

        margin:
            0 auto;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .pro-final-cta {

        padding:
            70px 0 80px;

    }


    .pro-final-cta-box {

        min-height:
            0;

        padding:
            43px 23px 34px;

        border-radius:
            23px;

    }


    .pro-final-cta-content h2 {

        font-size:
            37px;

    }


    .pro-final-cta-price {

        flex-direction:
            column;

        align-items:
            center;

        gap:
            12px;

    }


    .pro-final-cta-coffee {

        padding-left:
            0;

        padding-top:
            12px;

        border-left:
            0;

        border-top:
            1px solid rgba(255, 255, 255, .20);

    }


    .pro-final-cta-button {

        width:
            100%;

    }


    .pro-final-cta-trust {

        flex-direction:
            column;

        align-items:
            center;

    }


    .pro-final-dashboard {

        padding:
            18px;

        transform:
            none;

    }


    .pro-final-dashboard-cards {

        grid-template-columns:
            1fr;

    }

}

/* ==========================================================
   09. FOOTER
========================================================== */

.pro-footer {

    position: relative;

    padding:
        75px 0 0;

    background:
        #F8F9FC;

    border-top:
        1px solid #ECEEF4;

}


/* ==========================================================
   GRID PRINCIPAL
========================================================== */

.pro-footer-main {

    display:
        grid;

    grid-template-columns:
        1.5fr
        .75fr
        .85fr
        .85fr;

    gap:
        60px;

    padding-bottom:
        48px;

}


/* ==========================================================
   MARCA
========================================================== */

.pro-footer-brand {

    max-width:
        340px;

}


.pro-footer-logo {

    display:
        inline-flex;

    margin-bottom:
        20px;

}


.pro-footer-logo img {

    display:
        block;

    width:
        135px;

    height:
        auto;

}


.pro-footer-brand > p {

    max-width:
        320px;

    margin:
        0 0 21px;

    color:
        #737C91;

    font-size:
        12px;

    line-height:
        1.7;

}


/* MINI CTA */

.pro-footer-pro {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--pro-primary);

    font-size:
        11px;

    font-weight:
        800;

    text-decoration:
        none;

}


.pro-footer-pro span {

    font-size:
        16px;

    transition:
        transform .2s ease;

}


.pro-footer-pro:hover {

    color:
        var(--pro-primary);

}


.pro-footer-pro:hover span {

    transform:
        translateX(3px);

}


/* ==========================================================
   COLUNAS
========================================================== */

.pro-footer-title {

    display:
        block;

    margin-bottom:
        17px;

    color:
        #343D58;

    font-size:
        13px;

    font-weight:
        800;

}


.pro-footer-column nav {

    display:
        flex;

    flex-direction:
        column;

    gap:
        11px;

}


.pro-footer-column nav a {

    width:
        fit-content;

    color:
        #777F92;

    font-size:
        12px;

    font-weight:
        500;

    line-height:
        1.35;

    text-decoration:
        none;

    transition:
        color .2s ease,
        transform .2s ease;

}


.pro-footer-column nav a:hover {

    color:
        var(--pro-primary);

    transform:
        translateX(2px);

}


/* ==========================================================
   CONTATO / TRUST BAR
========================================================== */

.pro-footer-contact {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

    padding:
        25px 0;

    border-top:
        1px solid #E5E8F0;

}


.pro-footer-contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

}


.pro-footer-contact-icon {

    flex:
        0 0 39px;

    width:
        39px;

    height:
        39px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    color:
        var(--pro-primary);

    background:
        #EEF0FF;

    font-size:
        17px;

}


.pro-footer-contact-item span {

    display:
        block;

    margin-bottom:
        2px;

    color:
        #9A9FAE;

    font-size:
        12px;

}


.pro-footer-contact-item strong,
.pro-footer-contact-item a {

    display:
        block;

    color:
        #4E5770;

    font-size:
        13px;

    font-weight:
        700;

    text-decoration:
        none;

}


.pro-footer-contact-item a:hover {

    color:
        var(--pro-primary);

}


/* ==========================================================
   RODAPÉ INFERIOR
========================================================== */

.pro-footer-bottom {

    min-height:
        72px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    padding:
        17px 0;

    border-top:
        1px solid #E5E8F0;

}


.pro-footer-copyright {

    color:
        #9298A8;

    font-size:
        12px;

}


/* ==========================================================
   SOCIAL
========================================================== */

.pro-footer-social {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

}


.pro-footer-social a {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid #E2E5EE;

    border-radius:
        10px;

    color:
        #6C748A;

    background:
        #FFFFFF;

    font-size:
        15px;

    text-decoration:
        none;

    transition:
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;

}


.pro-footer-social a:hover {

    color:
        var(--pro-primary);

    border-color:
        #BCC1E5;

    transform:
        translateY(-2px);

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .pro-footer-main {

        grid-template-columns:
            1.4fr 1fr 1fr;

        gap:
            45px;

    }


    .pro-footer-brand {

        grid-column:
            1 / -1;

        max-width:
            500px;

    }


    .pro-footer-contact {

        grid-template-columns:
            1fr 1fr;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .pro-footer {

        padding-top:
            55px;

    }


    .pro-footer-main {

        grid-template-columns:
            1fr 1fr;

        gap:
            38px 25px;

    }


    .pro-footer-brand {

        grid-column:
            1 / -1;

    }


    .pro-footer-brand > p {

        max-width:
            100%;

    }


    .pro-footer-contact {

        grid-template-columns:
            1fr;

        gap:
            15px;

    }


    .pro-footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

        justify-content:
            center;

    }

}


@media (max-width: 430px) {

    .pro-footer-main {
        grid-template-columns: 1fr;
    }

    .pro-footer-brand {
        grid-column: auto;
    }

}

/* ==========================================================
   COOKIES
========================================================== */

.balance-cookie-banner {

    position: fixed;

    z-index: 9999998;

    left: 50%;

    bottom: 24px;

    width:
        calc(100% - 40px);

    max-width:
        1020px;

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    gap:
        17px;

    align-items:
        center;

    padding:
        19px 20px;

    border:
        1px solid #E3E6EF;

    border-radius:
        17px;

    background:
        rgba(255,255,255,.98);

    box-shadow:
        0 20px 60px rgba(29,37,90,.17);

    backdrop-filter:
        blur(15px);

    opacity:
        0;

    transform:
        translate(-50%, 25px);

    transition:
        opacity .25s ease,
        transform .25s ease;

}


.balance-cookie-banner.show {

    opacity:
        1;

    transform:
        translate(-50%, 0);

}


.balance-cookie-icon {

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    background:
        #F2F3FF;

    font-size:
        20px;

}


.balance-cookie-content strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #303955;

    font-size:
        13px;

}


.balance-cookie-content p {

    max-width:
        560px;

    margin:
        0;

    color:
        #747D91;

    font-size:
        11px;

    line-height:
        1.5;

}


.balance-cookie-policy {

    margin-top:
        4px;

    padding:
        0;

    border:
        0;

    color:
        var(--pro-primary);

    background:
        transparent;

    font-size:
        12px;

    font-weight:
        700;

    cursor:
        pointer;

}


/* ==========================================================
   BOTÕES
========================================================== */

.balance-cookie-actions {

    display:
        flex;

    gap:
        8px;

}


.balance-cookie-btn {

    min-height:
        39px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0 14px;

    border-radius:
        9px;

    font-size:
        12px;

    font-weight:
        700;

    cursor:
        pointer;

}


.balance-cookie-btn.accept {

    border:
        1px solid var(--pro-primary);

    color:
        #FFFFFF;

    background:
        var(--pro-primary);

}


.balance-cookie-btn.reject {

    border:
        1px solid #19B8AE;

    color:
        #118E87;

    background:
        #FFFFFF;

}


.balance-cookie-btn.manage {

    border:
        1px solid #D6D9E7;

    color:
        #545D75;

    background:
        #FFFFFF;

}


/* ==========================================================
   MODAL
========================================================== */

.balance-cookie-modal {

    position:
        fixed;

    z-index:
        9999999;

    inset:
        0;

}


.balance-cookie-modal-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(21,26,55,.50);

    opacity:
        0;

    transition:
        opacity .2s ease;

}


.balance-cookie-modal.show
.balance-cookie-modal-overlay {

    opacity:
        1;

}


.balance-cookie-modal-box {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        calc(100% - 35px);

    max-width:
        570px;

    max-height:
        calc(100vh - 50px);

    overflow-y:
        auto;

    padding:
        27px;

    border-radius:
        20px;

    background:
        #FFFFFF;

    box-shadow:
        0 25px 70px rgba(15,20,60,.25);

    opacity:
        0;

    transform:
        translate(-50%, -47%);

    transition:
        opacity .2s ease,
        transform .2s ease;

}


.balance-cookie-modal.show
.balance-cookie-modal-box {

    opacity:
        1;

    transform:
        translate(-50%, -50%);

}


/* HEADER */

.balance-cookie-modal-header {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

}


.balance-cookie-modal-header span {

    color:
        var(--pro-primary);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .6px;

}


.balance-cookie-modal-header h3 {

    margin:
        4px 0 0;

    color:
        #303955;

    font-size:
        22px;

}


.balance-cookie-modal-header button {

    width:
        34px;

    height:
        34px;

    border:
        0;

    border-radius:
        50%;

    color:
        #6D7488;

    background:
        #F2F3F7;

    font-size:
        20px;

    cursor:
        pointer;

}


.balance-cookie-modal-intro {

    margin:
        14px 0 22px;

    color:
        #747D91;

    font-size:
        12px;

    line-height:
        1.6;

}


/* ==========================================================
   OPÇÕES
========================================================== */

.balance-cookie-option {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    padding:
        17px 0;

    border-top:
        1px solid #ECEEF4;

}


.balance-cookie-option strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #37405A;

    font-size:
        12px;

}


.balance-cookie-option p {

    max-width:
        390px;

    margin:
        0;

    color:
        #8990A1;

    font-size:
        11px;

    line-height:
        1.5;

}


.balance-cookie-required {

    flex:
        0 0 auto;

    color:
        #0C978E;

    font-size:
        10px;

    font-weight:
        700;

}


/* ==========================================================
   SWITCH
========================================================== */

.balance-cookie-switch {

    position:
        relative;

    flex:
        0 0 42px;

    width:
        42px;

    height:
        23px;

}


.balance-cookie-switch input {

    position:
        absolute;

    opacity:
        0;

}


.balance-cookie-switch span {

    position:
        absolute;

    inset:
        0;

    border-radius:
        30px;

    background:
        #DDE0E8;

    cursor:
        pointer;

    transition:
        background .2s ease;

}


.balance-cookie-switch span::before {

    content:
        "";

    position:
        absolute;

    top:
        3px;

    left:
        3px;

    width:
        17px;

    height:
        17px;

    border-radius:
        50%;

    background:
        #FFFFFF;

    box-shadow:
        0 2px 5px rgba(0,0,0,.12);

    transition:
        transform .2s ease;

}


.balance-cookie-switch
input:checked + span {

    background:
        var(--pro-teal);

}


.balance-cookie-switch
input:checked + span::before {

    transform:
        translateX(19px);

}


/* ==========================================================
   AÇÕES MODAL
========================================================== */

.balance-cookie-modal-actions {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        9px;

    margin-top:
        18px;

}


.balance-cookie-modal-actions
.balance-cookie-btn {

    min-height:
        45px;

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 780px) {

    .balance-cookie-banner {

        grid-template-columns:
            auto 1fr;

        bottom:
            12px;

        width:
            calc(100% - 24px);

        padding:
            17px;

    }


    .balance-cookie-actions {

        grid-column:
            1 / -1;

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

    }


    .balance-cookie-btn.accept {

        grid-column:
            1 / -1;

        order:
            -1;

    }

}


@media (max-width: 480px) {

    .balance-cookie-icon {

        display:
            none;

    }


    .balance-cookie-banner {

        grid-template-columns:
            1fr;

    }


    .balance-cookie-actions {

        grid-column:
            auto;

    }


    .balance-cookie-modal-box {

        padding:
            22px 18px;

    }

}


/* ==========================================================
   HERO - PLAYER DE VÍDEO
========================================================== */

.pro-hero-video-container {

    position: relative;

    width: 100%;

    max-width: 1000px;

    overflow: hidden;

    border-radius: 18px;

    background: #000000;

    box-shadow:
        0 28px 80px rgba(0, 0, 0, .30);

}


.pro-hero-video-player {

    display: block;

    width: 100%;

    height: auto;

    max-height: 88vh;

    margin: 0;

    background: #000000;

    object-fit: contain;

}


/* ==========================================================
   GLIGHTBOX - PLAYER DO HERO
========================================================== */

.glightbox-container
.pro-hero-video-container {

    margin:
        0 auto;

}


.glightbox-container
.pro-hero-video-container
video {

    outline:
        none;

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .pro-hero-video-container {

        width:
            100%;

        border-radius:
            12px;

    }


    .pro-hero-video-player {

        max-height:
            80vh;

    }

}
