@keyframes bounceDown {

    0%,
    to {
        transform: translateY(0);
        opacity: .2
    }

    50% {
        transform: translateY(6px);
        opacity: 1
    }
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg
    }
}

@keyframes shimmer {
    to {
        rotate: 360deg
    }
}

@keyframes breathe {

    0%,
    to {
        scale: 1
    }

    50% {
        scale: 1.2
    }
}

@keyframes stepFadeZoom {
    0% {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes pulse {

    0%,
    to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }
}

@keyframes pulse-vsl-btn {

    0%,
    to {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }
}

:root {
    --accent: #2a87df;
    --accent-dark: #1a5fb4;
    --text-dark: #26333f;
    --text-muted: #34495E;
    --bg-light: #f5faff;
    --bg-mint: #eef5fc;
    --danger: #E74C3C;
    --danger-dark: #C0392B;
    --cta: #F39C12;
    --cta-hover: #E67E22;
    --spacing-xs: 15px;
    --spacing-sm: 30px;
    --spacing-md: 50px;
    --spacing-lg: 70px;
    --spacing-xl: 45px;
    --container-padding: 40px;
    --container-max-width: 1200px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    overflow-x: hidden;
    width: 100%
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased
}

section {
    max-width: 100vw;
    overflow-x: hidden
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%
}

#vsl-box,
.hero,
section {
    position: relative
}

.hero {
    display: flex;
    min-height: 500px;
    border-style: solid;
    border-width: 5px 0 0;
    border-image: linear-gradient(90deg, #39dd9400, #2a87df, #39dd9400)1;
    padding: 30px 0 100px;
    background-image: url(images/hero-desktop.jpg);
    background-position: top center;
    background-size: cover
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(88deg, #fff 29%, #fff 52%);
    opacity: .57;
    mix-blend-mode: multiply;
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 10px
}

.hero-content {
    width: 68%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero h1,
h3 {
    font-weight: 300;
    text-transform: uppercase
}

.hero h1 {
    font-family: "Anton", sans-serif;
    font-size: 45px;
    line-height: 78px;
    color: var(--text-dark)
}

.hero h1 span {
    background-color: #2a87df;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    font-size: 55px
}

h3 {
    font-family: "Anton", Sans-serif;
    font-size: 27px;
    line-height: 59px;
    color: #27332f
}

.hero-subtitle,
.hero-subtitle-small {
    font-family: "Antonio", sans-serif;
    font-size: 30px;
    line-height: 76px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, .1);
    color: var(--text-dark);
    width: 89.855%;
    margin: 0 0-15px
}

.hero-subtitle-small {
    font-size: 22px;
    line-height: 35px;
    margin: 0
}

.vsl-section {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    align-items: center;
    background: #fff;
    padding: 50px 0 !important
}

#vsl-box {
    max-width: 800px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 0#c5a23b
}

#vsl-box video {
    width: 100%;
    display: block
}

#vsl-overlay {
    position: absolute;
    inset: 0;
    justify-content: center;
    z-index: 10;
    visibility: visible;
    opacity: 1;
    transition: opacity .3s ease;
    will-change: opacity, visibility;
    backface-visibility: hidden;
    transform: translateZ(0)
}

#vsl-btn,
#vsl-overlay,
.vsl-icon-btn {
    display: flex;
    align-items: center;
    cursor: pointer
}

#vsl-btn {
    background: linear-gradient(135deg, #ffd65f, #c5a23b);
    color: #3b2d08;
    font-weight: 600;
    font-family: "Antonio", sans-serif;
    font-size: 1.1rem;
    padding: 16px 28px;
    border: 0;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, .6);
    animation: pulse-vsl-btn 1.6s infinite;
    gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease
}

#vsl-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25)
}

#vsl-btn i {
    color: #594409;
    font-size: 1.1rem;
    height: 15px
}

#vsl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s
}

#vsl-bar {
    height: 100%;
    width: 0%;
    background: #ffd65f;
    transition: width .2s linear
}

#vsl-mini-container {
    position: fixed !important;
    bottom: 15px !important;
    left: 15px !important;
    width: 280px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    display: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    border-radius: 55px
}

#vsl-mini-container video {
    width: 100%;
    border-radius: 10px;
    display: block
}

#vsl-mini-container #vsl-progress {
    height: 5px
}

.vsl-icon-btn {
    position: absolute;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 214, 95, .7);
    color: #594409;
    border-radius: 50%;
    z-index: 10000;
    transition: opacity .2s
}

#vsl-mini-container .vsl-pause-btn {
    top: 10px;
    right: 50px;
    display: none
}

#vsl-mini-container:hover .vsl-pause-btn {
    display: flex
}

#vsl-mini-container .vsl-close-btn {
    top: -10px;
    right: -10px;
    display: none;
    background: rgb(218 19 19/69%);
    width: 32px;
    height: 32px
}

.vsl-fullscreen-btn {
    bottom: 10px;
    right: 10px;
    opacity: .7
}

#vsl-box:hover .vsl-fullscreen-btn,
#vsl-mini-container:hover .vsl-fullscreen-btn {
    opacity: 1
}

.vsl-icon-btn i {
    font-size: 1rem
}

.vsl-play-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgb(12 113 107/55%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer
}

.vsl-play-center-btn i {
    font-size: 1.5rem;
    color: #fff
}

.problema-section {
    padding-top: 35px !important;
    background: #fff;
    padding: 0 var(--container-padding) var(--spacing-sm) var(--container-padding)
}

.problema-card {
    max-width: 1140px;
    margin: 0 auto;
    background: #f5faff;
    border-radius: 15px;
    box-shadow: -5px 5px 0 var(--accent);
    padding: 50px 25px 25px
}

.problema-story {
    background: #f0fcfc;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px
}

.problema-story p,
.section-title {
    font-family: "Roboto", sans-serif;
    font-size: 23px;
    line-height: 36px;
    color: var(--text-dark)
}

.problema-story .highlight {
    color: var(--danger);
    font-weight: 700
}

.section-title {
    font-family: "Anton", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    line-height: normal;
    margin: 0px;
    margin-bottom: 20px
}

.section-title span {
    color: #e74c3c;
    font-weight: 500
}

.identification-section .section-title span,
.section-title .green {
    color: var(--accent)
}

.problema-text {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: var(--text-muted)
}

.icon-list {
    list-style: none;
    padding: 0
}

.icon-list li {
    position: relative;
    padding: 10px 0 10px 45px;
    border-bottom: 1px solid rgb(227 102 102/89%);
    line-height: 1.55
}

.icon-list li:last-child,
.icon-list.green li:last-child {
    border-bottom: none
}

.icon-list li i {
    color: var(--danger);
    font-size: 17px;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, .1);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.icon-list.green li {
    border-bottom: 1px solid #2a87df6b
}

.icon-list.green li i {
    color: #2a87df;
    background: rgba(101, 166, 159, .12)
}

.danger-text {
    color: #000
}

.solucoes-section {
    background: var(--bg-light);
    padding: var(--spacing-sm) 40px var(--spacing-md) 40px
}

.solucoes-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.fail-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: -5px 5px 0 var(--danger-dark)
}

.fail-card-title {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3f0f0b;
    display: flex;
    align-items: center;
    gap: 10px
}

.fail-card-title i {
    color: #db3636 !important;
    font-size: 33px;
    flex-shrink: 0
}

.fail-card p {
    color: #3f0f0b;
    font-size: 15px;
    margin-top: 5px
}

.validacao-section {
    background: var(--bg-light);
    padding: 0 40px var(--spacing-md) 40px
}

.validacao-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0
}

.validacao-box {
    background: #eef5fc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: -5px 5px 0 var(--accent);
    margin-bottom: 20px
}

.validacao-box p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #0d3a6e
}

.stat-box {
    background: var(--accent);
    color: #cce0ff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: -5px 5px 0 var(--accent-dark);
    text-align: center;
    margin-bottom: 15px
}

.validacao-section .stat-box:not(.stats-grid .stat-box),
.validacao-section>.validacao-inner>.stat-box:first-of-type {
    background: #0d3a6e;
    color: #d4e5ff;
    text-align: left
}

.stat-box .number {
    font-size: 48px;
    font-weight: 700
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px
}

.objecoes-section {
    background: var(--bg-light);
    padding: 0 var(--container-padding) var(--spacing-md) var(--container-padding)
}

.objecoes-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0
}

.objection-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: -5px 5px 0 var(--accent-dark);
    margin-bottom: 15px
}

.objection-title {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2575d6;
    display: flex;
    align-items: center;
    gap: 10px
}

.objection-title i {
    color: #2575d6 !important;
    font-size: 30px;
    flex-shrink: 0
}

.objection-card p {
    color: #000;
    font-weight: 400;
    margin-top: 5px
}

.protocolo-section {
    background: #fff;
    padding: var(--spacing-sm) var(--container-padding)
}

.protocolo-inner {
    max-width: 961px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center
}

.protocolo-title {
    font-family: "Anton", sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 59px;
    font-weight: 500
}

.protocolo-title span {
    color: var(--accent);
    font-weight: 100
}

.protocolo-subtitle {
    font-family: "Antonio", sans-serif;
    font-size: 23px;
    color: var(--text-dark);
    margin-top: 10px
}

.depoimentos-title span,
.garantia-content h2 span,
.protocolo-subtitle span {
    color: var(--accent)
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    color: #2b4355;
    font-family: system-ui, sans-serif
}

.steps__media {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center
}

.steps__media img {
    width: 100%;
    max-width: 520px;
    border-radius: 1.25rem;
    box-shadow: none
}

.steps__list {
    flex: 1 1 350px;
    list-style: none;
    margin: 0;
    padding-left: 2.75rem;
    position: relative
}

.steps__list::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: .75rem;
    bottom: .75rem;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), #d4e9ff)
}

.steps__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: opacity .25s ease;
    text-align: left
}

.beneficios-lista li:last-child,
.steps__item:last-child {
    margin-bottom: 0
}

.steps__item:hover {
    opacity: .8
}

.depoimento-card .icon,
.steps__circle {
    background: var(--accent);
    border-radius: 50%;
    color: #fff
}

.steps__circle {
    flex: 0 0 52px;
    height: 52px;
    font-weight: 700;
    font-size: 1.25rem;
    display: grid;
    place-items: center;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 9
}

.steps__item.active .steps__circle {
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #1a5fb4, 0 0 0 6px rgb(250 253 255), 0 6px 20px rgba(42, 135, 223, .45);
    background: linear-gradient(145deg, #2a87df 0, #1a5fb4 100%)
}

.steps__content h3 {
    margin: 0 0 6px;
    font-size: 1.125rem;
    color: var(--accent);
    font-family: "Antonio", sans-serif;
    line-height: 1.25
}

.steps__content h3 .step-date {
    display: inline-block;
    background: linear-gradient(135deg, #ffd65f, #c5a23b);
    color: #594409;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-right: 4px;
    vertical-align: middle
}

.steps__content p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.45;
    font-family: "Roboto", sans-serif
}

@media (max-width:768px) {
    .steps {
        flex-direction: column;
        align-items: stretch;
        padding-left: 2rem;
        padding-right: 2rem
    }

    .steps__list,
    .steps__media {
        flex: 1 1 100%
    }

    .steps__list {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .steps__list::before {
        left: 2rem
    }
}

.depoimentos-section {
    background: var(--bg-mint);
    padding: var(--spacing-sm) var(--container-padding) var(--spacing-md) var(--container-padding)
}

.depoimentos-title {
    font-family: "Anton", sans-serif;
    font-size: 41px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px
}

.depoimentos-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.depoimento-card {
    background: linear-gradient(346deg, #fff, #ffffff6e);
    border-radius: 10px;
    padding: 30px;
    box-shadow: -5px 5px 0#2a87df;
    position: relative;
    height: 100%
}

.depoimento-card .icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.depoimento-card p {
    font-size: 17px;
    line-height: 26px;
    font-weight: 300;
    margin-top: 10px
}

.depoimento-card .author {
    font-family: "Antonio", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px
}

.garantia-section {
    background: #fff;
    padding: var(--spacing-md) var(--container-padding)
}

.garantia-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 30px;
    align-items: center
}

.garantia-badge {
    flex: 0 0 200px
}

.garantia-badge img {
    width: 100%
}

.cta-section h2,
.garantia-content h2,
footer h3 {
    font-family: "Anton", sans-serif;
    text-transform: uppercase
}

.garantia-content h2 {
    font-size: 32px;
    color: var(--text-dark)
}

.garantia-content p {
    font-size: 17px;
    line-height: 28px;
    margin-top: 15px
}

.cta-section {
    background: linear-gradient(135deg, var(--accent), #4a7f7f);
    padding: 60px 0;
    text-align: center
}

.cta-section h2,
footer h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px
}

.cta-section p {
    color: #d1fffd;
    font-size: 20px;
    margin-bottom: 30px
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--accent);
    font-family: "Antonio", sans-serif;
    font-size: 22px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    transition: transform .3s
}

.cta-btn:hover {
    transform: scale(1.05)
}

footer {
    background: var(--text-dark);
    color: #fff;
    text-align: center;
    padding: 30px 15px;
    font-size: 14px
}

footer h3 {
    color: #2a87df;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: -6px;
    font-weight: 100
}

@media (max-width:1024px) {
    .solucoes-inner {
        grid-template-columns: 1fr
    }

    .depoimentos-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:767px) {
    .hero {
        padding: 150px 10px 0;
        min-height: 400px;
        border-width: 2px 0 0;
        background-image: url(images/hero-mobile.webp)
    }

    .hero::before {
        background-image: linear-gradient(0deg, #fff 44%, #fff 89%);
        opacity: .55
    }

    .hero-inner {
        flex-direction: column
    }

    .hero-content {
        width: 100%;
        margin-top: 50px;
        align-items: center;
        text-align: center
    }

    .hero h1 {
        font-size: 31px;
        line-height: 54px
    }

    .hero h1 span {
        font-size: 30px
    }

    .hero-subtitle {
        font-size: 21px;
        line-height: 29px;
        width: 95%;
        text-align: center;
        margin: 10px 0 0
    }

    .hero-subtitle-small {
        font-size: 20px;
        line-height: 26px;
        width: 80%;
        text-align: center;
        margin: -15px 0 0
    }

    .hero-safe-text {
        width: 100% !important
    }

    .vsl-section {
        margin: 20px;
        padding: 20px 0 !important
    }

    #vsl-box {
        border-radius: 10px;
        box-shadow: 0 6px 0#63a19d
    }

    .depoimentos-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .stats-grid .stat-box {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px 25px
    }

    .stats-grid .stat-box .number {
        font-size: 42px;
        min-width: 75px;
        flex-shrink: 0;
        line-height: 1
    }

    .stats-grid .stat-box p {
        margin: 0;
        font-size: 15px;
        line-height: 1.4
    }

    .garantia-inner {
        flex-direction: column;
        text-align: center
    }

    .garantia-badge {
        flex: 0 0 150px
    }

    .protocolo-title {
        font-size: 21px;
        font-weight: 100;
        line-height: 1.5;
        margin-bottom: 10px
    }

    .depoimentos-title {
        font-size: 30px
    }

    .steps {
        flex-direction: column;
        padding: 1rem
    }

    .steps__list {
        padding-left: .5rem
    }

    .steps__list::before {
        left: 2rem
    }

    .problema-section {
        background: #fff;
        padding: 40px 20px 60px
    }

    .problema-story p {
        font-family: "Roboto", sans-serif;
        font-size: 21px;
        line-height: 33px;
        color: var(--text-dark)
    }

    .problema-story {
        background: #f0fcfc;
        border-radius: 0;
        padding: 28px;
        margin: -30px -30px 35px
    }

    .not-for-you-box {
        background: rgb(255 255 255/48%) !important;
        border: 1px solid rgb(187 70 25) !important
    }

    .fear-breaking-title {
        font-size: 18px !important
    }

    .fear-breaking-section .container {
        text-align: left !important
    }

    .icon-list li {
        position: relative;
        padding: 10px 0 10px 45px;
        border-bottom: 1px solid rgba(0, 0, 0, .06)
    }

    .solucoes-section,
    .validacao-section {
        background: var(--bg-light);
        padding: 11px 0 50px
    }

    .validacao-section {
        padding: 0 0 50px
    }

    .objecoes-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px 0 15px
    }

    .objection-title i {
        color: #a8caff;
        font-size: 33px
    }

    .beneficios-section {
        padding: 40px 15px 80px !important
    }

    .fail-card-title i {
        color: #db3636 !important;
        font-size: 33px
    }

    .infografico-img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain
    }
}

.infografico-img {
    max-width: min(410px, 90%);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.presentes-section {
    background: linear-gradient(180deg, #fff 0, #fff 100%);
    padding: 0 15px 15px
}

.presentes-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.presentes-section h1,
.presentes-section h2 {
    font-family: "Anton", sans-serif;
    color: #27332f;
    text-transform: uppercase
}

.presentes-section h1 {
    font-size: 41px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px
}

.presentes-section h1 span {
    font-family: "Antonio", sans-serif;
    font-size: 54px;
    font-weight: 700;
    background-color: var(--accent);
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin-top: 5px
}

.presentes-section h2 {
    font-size: 56px;
    margin-bottom: 50px;
    letter-spacing: 2px
}

.beneficios-section .section-title span,
.presentes-section h2 span {
    color: var(--accent)
}

.presentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: center
}

.presentes-section h3:last-of-type {
    font-family: "Antonio", sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 19px
}

.presentes-section h3:last-of-type b {
    color: var(--accent)
}

.presentes-section .presente-card {
    background: #eef5fc;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: -5px 5px 0#2a87df;
    transition: all .3s ease;
    cursor: pointer
}

.presentes-section .presente-card:hover {
    transform: translateY(-5px);
    box-shadow: -5px 5px 0#1a252f
}

.presentes-section .presente-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    margin: 0 auto -35px
}

.presentes-section .bonus-tag {
    font-family: "Antonio", sans-serif;
    font-size: 19px;
    font-weight: 300;
    color: #27332f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: -15px
}

.presentes-section .bonus-title {
    font-family: "Anton", sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #27332f;
    text-transform: uppercase;
    line-height: 54px;
    margin-bottom: 9px
}

.presentes-section .bonus-desc {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
    color: #27332f;
    margin-bottom: 20px
}

.presentes-section .bonus-price {
    font-family: "Antonio", sans-serif;
    font-size: 26px;
    color: #2c3e50;
    font-weight: 500;
    margin-top: -15px
}

.presentes-section .bonus-price .old-price {
    text-decoration: line-through;
    color: #c73828
}

.presentes-section .bonus-price .gratis {
    color: #27332f;
    font-weight: 700;
    margin-left: 8px
}

@media (min-width:769px) {
    .presentes-section .bonus-title {
        font-size: 24px
    }

    .presentes-section .bonus-price {
        font-size: 23px
    }

    .presentes-section .presente-card:nth-child(1) img {
        margin-bottom: -30px
    }

    .presentes-section .presente-card:nth-child(2) img {
        margin-bottom: 0
    }

    .presentes-grid {
        gap: 20px !important
    }
}

@media (max-width:768px) {
    .presentes-section .presente-card {
        margin-bottom: 30px
    }

    .presentes-section .presente-card img {
        max-width: 100%;
        margin: -20px auto -30px
    }

    .presentes-grid {
        gap: 0
    }
}

.summary-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #2a87df;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #2a87df
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.summary-total {
    background: #fff;
    color: #1f3955;
    border-radius: 10px;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.item-info h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 5px;
    margin-top: 5px
}

.item-tag {
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #2c3e50;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block
}

.item-tag.bonus {
    background: #fff2f1;
    color: #c73828
}

.item-info h4,
.item-price,
.item-tag,
.limited-card h4 {
    font-family: "Antonio", sans-serif
}

.item-price {
    font-size: 22px;
    font-weight: 600;
    color: #2a87df;
    padding-top: 10px
}

@media (max-width:768px) {
    .summary-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left
    }

    .summary-item .item-price {
        align-self: flex-end;
        margin-top: -54px
    }

    .summary-container {
        padding: 20px
    }
}

.limited-offer-wrapper {
    background: var(--bg-mint)
}

.limited-offer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.beneficios-section {
    background: #fff;
    padding: var(--spacing-lg) var(--container-padding);
    padding-bottom: 80px
}

.beneficios-inner {
    max-width: 900px;
    margin: 0 auto
}

.beneficios-lista {
    background: #f0fcfc
}

.beneficios-lista ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.beneficios-lista li {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.5
}

.beneficios-lista li i {
    color: #2a87df;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0
}

.beneficios-lista li b {
    font-weight: 700
}

#limited-offer {
    --navy: #1E2B3C;
    --highlight: #2a87df;
    --bg-card: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", sans-serif;
    padding: 0 1rem 3rem;
    background-color: transparent
}

.limited-offer-inner h1 {
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: "Anton", Sans-serif;
    font-size: 31px;
    font-weight: 300;
    text-transform: uppercase;
    color: #1a5fb4;
    margin-top: 40px
}

.limited-offer-inner h1 span {
    background-color: #2a87df;
    padding: 5px;
    color: #fff;
    border-radius: 5px
}

#limited-offer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto
}

.limited-card {
    background: var(--bg-card);
    border: 1px solid rgba(42, 135, 223, .2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1 1 300px;
    min-width: 280px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.limited-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--highlight);
    opacity: .8
}

.limited-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08)
}

.limited-card .icon {
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 1.2rem;
    display: inline-block;
    background: rgba(42, 135, 223, .1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%
}

.limited-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .8rem;
    letter-spacing: .5px
}

.limited-card p {
    font-size: 1rem;
    color: #556b6d;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.limited-card .date-text,
.limited-card .timer {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    color: var(--highlight)
}

.limited-card .timer {
    font-size: 2.2rem;
    letter-spacing: 2px
}

.limited-card .date-text {
    font-size: 1.4rem;
    margin-top: 5px;
    text-transform: uppercase
}

@media (max-width:768px) {
    .limited-card {
        padding: 2rem 1.5rem;
        min-width: 100%
    }

    .limited-card .timer {
        font-size: 1.8rem
    }
}

.multi-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
    line-height: .6;
    padding-bottom: 0
}

.multi-arrow i {
    font-size: 3rem;
    line-height: .6;
    animation: bounceDown 1.5s infinite;
    color: #7eb8f5
}

.multi-arrow i:nth-child(2) {
    animation-delay: .25s;
    color: #2a87df
}

.multi-arrow i:nth-child(3) {
    animation-delay: .5s;
    color: #1a5fb4
}

.multi-arrow-section {
    background: #fff;
    position: relative;
    padding-top: 35px
}

.multi-arrow-section::before {
    border-top: 50px solid #e7f5f6
}

#price>*,
.multi-arrow-section>* {
    position: relative;
    z-index: 1
}

#price::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid #fff;
    z-index: 0
}

#price .price-card {
    background: linear-gradient(165deg, #2a87df 0, #1a5fb4 100%);
    border: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 10px solid #0f2847;
    border-radius: 20px;
    padding: 2rem;
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 500px;
    color: #fff;
    overflow: visible;
    display: flex;
    flex-direction: column
}

#price .price-card .payment-security {
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    font-size: 14px
}

.price-old,
.price-old span {
    color: rgba(255, 255, 255, .9)
}

.price-old span {
    text-decoration: line-through;
    text-decoration-color: rgb(255 2 2/65%)
}

.price-label {
    font-family: "Antonio", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #f0fcfc;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px
}

.price-value-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0
}

.price-main-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start
}

.price-fraction-wrapper,
.price-installments {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.price-installments {
    align-items: flex-end;
    justify-content: center;
    line-height: 1
}

.price-installments .text-12x {
    font-family: "Barlow", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase
}

.price-cash b,
.shiny-cta-button {
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem
}

.shiny-cta-button {
    display: inline-block;
    width: auto;
    min-width: 320px;
    background: var(--cta);
    font-family: "Antonio", sans-serif;
    font-weight: 400;
    padding: 20px 40px;
    border: 0;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    transition: all .3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px
}

.shiny-cta-button:hover {
    background: var(--cta-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3)
}

:root {
    --shiny-cta-bg: #1a5fb4 !important;
    --shiny-cta-bg-subtle: #0d3a6e;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: #7eb8f5;
    --shiny-cta-highlight-subtle: #a8caff
}

.shiny-cta a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    display: block
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false
}

.shiny-cta {
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    width: 100%;
    font-family: "Antonio", sans-serif;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box, conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)), transparent, var(--shiny-cta-highlight) var(--gradient-percent), var(--gradient-shine) calc(var(--gradient-percent)*2), var(--shiny-cta-highlight) calc(var(--gradient-percent)*3), transparent calc(var(--gradient-percent)*4)) border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
    min-width: 320px;
    padding: 20px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine
}

.shiny-cta span::before,
.shiny-cta::after,
.shiny-cta::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%
}

.shiny-cta span::before,
.shiny-cta::after {
    z-index: -1
}

.shiny-cta:active {
    translate: 0 1px
}

.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at var(--position) var(--position), var(--shiny-cta-highlight) calc(var(--position)/4), transparent 0) padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
    border-radius: inherit;
    opacity: .3;
    z-index: -1
}

.shiny-cta:is(:hover, :focus-visible)::before {
    opacity: .6
}

.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(-50deg, transparent, var(--shiny-cta-highlight), transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, #000);
    opacity: .4
}

.shiny-cta:is(:hover, :focus-visible)::after {
    opacity: .8
}

.shiny-cta span {
    z-index: 1
}

.shiny-cta span::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0-1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
    transition: opacity var(--transition);
    animation: calc(var(--duration)*1.5) breathe linear infinite
}

.shiny-cta,
.shiny-cta::after,
.shiny-cta::before {
    animation: var(--animation) var(--duration), var(--animation) calc(var(--duration)/.4) reverse paused;
    animation-composition: add
}

.shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 25%;
    --gradient-angle-offset: 120deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(42, 135, 223, .4), inset 0 0 0 1px var(--shiny-cta-bg-subtle);
    animation-play-state: running
}

.shiny-cta:is(:hover, :focus-visible)::after,
.shiny-cta:is(:hover, :focus-visible)::before {
    animation-play-state: running
}

.shiny-cta:is(:hover, :focus-visible) span::before {
    opacity: 1
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
    color: #fff;
    background-color: var(--cta-hover);
    text-decoration: none
}

.access-info {
    margin-top: 2rem
}

.access-info h3 {
    color: rgba(255, 255, 255, .6)
}

.access-info b {
    color: #fff;
    font-weight: 400
}

@media (max-width:768px) {
    .price-card {
        padding: 3rem 1.5rem
    }

    .price-label {
        font-size: 2.5rem
    }

    .price-huge {
        font-size: 98px
    }

    .price-fraction {
        font-size: 32px
    }

    .price-cash b {
        color: #fff;
        font-weight: 600;
        font-size: 1rem
    }

    .price-installments .text-12x {
        font-size: 1.2rem
    }

    .price-installments .currency {
        font-size: 38px
    }
}

.guarantee-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left
}

.guarantee-box {
    background: #fff;
    border: 1px solid rgb(42 135 223);
    border-radius: 20px;
    padding: 1.5rem;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    transition: all .3s ease
}

.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08)
}

.guarantee-box h3,
.guarantee-box i {
    display: inline-block;
    vertical-align: middle
}

.guarantee-box i {
    font-size: 2.5rem;
    color: #2a87df;
    margin-right: 1rem
}

.guarantee-box h3 {
    font-family: "Antonio", sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: .5rem;
    text-transform: uppercase;
    margin-top: 0
}

.guarantee-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #556b6d;
    margin-top: 10px
}

.guarantee-box b,
.sobre-content b {
    color: #2c3e50
}

.risk-free-badge {
    background: #0a1a2e;
    color: #fff;
    padding: 29px;
    border-radius: 25px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 29px;
    text-align: left
}

.risk-free-badge img {
    width: 135px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .2))
}

.risk-free-text h4,
.sobre-content .subtitle {
    font-family: "Antonio", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2a87df
}

.risk-free-text p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .9
}

@media (max-width:768px) {

    .guarantee-container,
    .risk-free-badge {
        flex-direction: column
    }

    .risk-free-badge {
        text-align: center;
        padding: 30px 20px
    }

    .risk-free-badge img {
        width: 200px;
        height: auto;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .2))
    }

    .nao-gostar-inner h2 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

.sobre-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 60px;
    align-items: center;
    height: 100%;
    overflow: hidden;
    padding: 10px !important
}

.sobre-content {
    max-width: 550px
}

.sobre-content h2 {
    font-family: "Anton", sans-serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1
}

.sobre-content .subtitle {
    font-size: 1.3rem;
    color: #7ba9a6;
    margin-bottom: 30px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #556b6d;
    margin-bottom: 20px
}

@media (max-width:900px) {
    .sobre-section {
        height: 691px !important
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        background: #000000c2
    }

    .sobre-content h2 {
        font-size: 32px
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background: #f5faff;
    border: 1px solid rgb(42 135 223/25%);
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item.active {
    border-color: #2a87df;
    box-shadow: 0 10px 25px rgba(123, 169, 166, .1);
    background: #fff
}

.faq-icon,
.faq-question {
    display: flex;
    align-items: center
}

.faq-question {
    padding: 1.5rem 2rem;
    justify-content: space-between;
    cursor: pointer;
    user-select: none
}

.faq-question h4 {
    font-family: "Antonio", sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    transition: color .3s ease
}

.faq-item.active .faq-question h4 {
    color: #2a87df
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgb(42 135 223/11%);
    border-radius: 50%;
    justify-content: center;
    color: #6b9bc9;
    font-size: 10px;
    transition: all .3s ease
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #2a87df;
    color: #fff
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all .4s cubic-bezier(0, 1, 0, 1);
    opacity: 0
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1.5rem;
    transition: all .4s cubic-bezier(1, 0, 1, 0);
    opacity: 1
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #556b6d;
    margin: 0
}

@media (max-width:768px) {
    .faq-question {
        padding: 1.2rem 1.5rem
    }

    .faq-answer {
        padding: 0 1.5rem
    }
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0, transparent 15%, rgba(123, 169, 166, .08) 30%, rgba(123, 169, 166, .15) 40%, rgba(123, 169, 166, .22) 50%, rgba(123, 169, 166, .15) 60%, rgba(123, 169, 166, .08) 70%, transparent 85%, transparent 100%)
}

.steps__media img.step-img-anim {
    animation: stepFadeZoom .6s ease
}

.cta-final-section {
    background: var(--text-dark)
}

.cta-final-section>div {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.cta-final-section h2 {
    font-family: "Anton", sans-serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    font-weight: 100
}

.cta-final-section h2 span {
    color: var(--accent)
}

.cta-final-section p {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 766px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: .3px
}

.cta-final-section>div>div:first-of-type {
    margin-bottom: 30px
}

.cta-final-section .shiny-cta {
    max-width: 500px;
    font-size: 1.3rem;
    margin: 0 auto;
    width: 100%
}

.cta-final-section>div>div:last-of-type {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center
}

.cta-final-section>div>div:last-of-type span {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500
}

.cta-final-section>div>div:last-of-type span i {
    font-size: 16px;
    color: #fff
}

.cta-final-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 169, 166, .08)0, transparent 60%);
    pointer-events: none;
    z-index: 1
}

@media (max-width:768px) {
    .limited-offer-wrapper {
        padding: 0 !important
    }

    #limited-offer {
        padding: 0 0 3rem
    }

    #price .price-card,
    #price .price-card .cta-block {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box
    }

    #price .price-card .cta-block {
        padding: 0
    }

    #price .price-card .shiny-cta {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box
    }

    #price.oferta-section {
        padding: 90px 10px 10px !important;
        height: 460px !important
    }

    .shiny-cta a {
        color: #fff;
        font-weight: 400;
        text-decoration: none;
        display: block;
        font-size: 16px
    }

    .summary-section {
        padding-top: 50px !important;
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .summary-section h1 {
        font-size: 33px !important;
        line-height: 56px !important
    }

    .presentes-section .bonus-title {
        font-size: 23px !important;
        line-height: 46px !important
    }

    .presentes-section h1 {
        font-size: 35px !important
    }

    .presentes-section h1 span {
        font-size: 43px !important
    }

    .presentes-section h2 {
        font-size: 49px !important;
        margin-top: -12px !important;
        margin-bottom: 20px !important
    }

    .presentes-section h3 {
        font-size: 19px !important;
        margin-top: -10px !important
    }

    .depoimentos-section {
        padding: 100px 15px 0 !important
    }

    .protocolo-section {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .objecoes-section,
    .solucoes-section,
    .validacao-section {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .solucoes-section .section-title,
    .validacao-section .section-title {
        margin-bottom: -5px !important;
        line-height: 1.8 !important;
        margin-top: 20px
    }

    .validacao-section .section-title {
        margin-bottom: 13px !important
    }

    .objecoes-section .section-title {
        line-height: 1.8 !important;
        margin-bottom: 20px !important
    }

    .beneficios-section {
        padding: 40px 15px 80px !important
    }

    .beneficios-lista {
        padding: 32px 20px !important
    }

    .nao-gostar-section {
        padding: 16px 15px 50px !important
    }

    .nao-gostar-section h2 {
        margin-top: 15px !important;
        font-size: 22px !important;
        text-align: center;
        margin-left: 0
    }

    .faq-section {
        padding: 40px 20px !important
    }

    .faq-section h2 {
        font-size: 25px !important
    }

    .sobre-section h2 {
        font-size: 27px !important;
        line-height: 1.5
    }

    .cta-final-section {
        padding: 30px var(--container-padding) !important
    }

    .cta-final-section p {
        margin-left: -20px;
        margin-right: -20px
    }

    footer {
        padding: 15px var(--container-padding) !important
    }

    .shiny-cta {
        padding: 25px !important
    }
}

@media (max-width:767px) {
    .problema-story {
        background: #f0fcfc;
        border-radius: 0;
        padding: 28px;
        margin: -30px -30px 35px
    }

    .icon-list li {
        position: relative;
        padding: 10px 0 10px 45px;
        border-bottom: 1px solid rgb(237 26 26/69%)
    }
}

.safe-cta-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5
}

.safe-cta-container .shiny-cta {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.cta-microcopy {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #286bbd;
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.4;
    display: block
}

.cta-microcopy i {
    color: var(--accent);
    margin-right: 5px
}

#price .price-card .cta-microcopy {
    color: #fff
}

#price .price-card .cta-microcopy i {
    color: #082e55
}

#price .price-card .cta-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0
}

#price .price-card .shiny-cta {
    --shiny-cta-bg: #0f2847 !important;
    --shiny-cta-bg-subtle: #0a1a2e;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: #2a87df;
    --shiny-cta-highlight-subtle: #1a5fb4;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    font-size: clamp(.75rem, 2.2vw, 1.125rem)
}

#price .price-card .shiny-cta:is(:hover, :focus-visible) {
    box-shadow: 0 15px 35px rgba(15, 40, 71, .5), inset 0 0 0 1px var(--shiny-cta-bg-subtle)
}

@media (max-width:768px) {
    #price .price-card .cta-block {
        padding: 0
    }

    #price .price-card .shiny-cta {
        padding-left: 10px;
        padding-right: 10px;
        font-size: clamp(.7rem, 3.5vw, .95rem)
    }
}

@media (max-width:480px) {
    #price .price-card .shiny-cta {
        font-size: clamp(.65rem, 3vw, .85rem)
    }
}

@media (max-width:768px) {
    .safe-cta-container {
        margin-top: 30px;
        margin-bottom: 40px;
        padding-bottom: 10px
    }

    .safe-cta-container .shiny-cta {
        min-width: 280px
    }
}

.multi-arrow-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid rgba(42, 135, 223, .11);
    z-index: 0
}

.limited-offer-wrapper {
    background: rgba(42, 135, 223, .08);
    padding: var(--spacing-md) var(--container-padding) var(--spacing-sm) var(--container-padding);
    padding-top: 20px
}

.beneficios-section .section-title {
    font-size: 30px;
    line-height: 1.4em;
    font-family: "Anton", Sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 19px
}

.beneficios-lista {
    background: #eef5fc;
    border-radius: 15px;
    padding: 35px 40px;
    box-shadow: -6px 6px 0 var(--accent)
}

.beneficios-lista li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start
}

.cta-final-section {
    background: #0d2040;
    padding: 50px var(--container-padding);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-final-section p strong:first-of-type {
    color: #fff;
    font-weight: 600
}

.cta-final-section p strong:nth-of-type(2),
.cta-final-section p strong:nth-of-type(3),
.cta-final-section p strong:nth-of-type(4) {
    color: #fff;
    font-weight: 800
}

#price .price-card .price-old,
#price .price-card .price-old span {
    color: #fff !important
}

#price .price-card .access-info h3,
#price .price-card .price-cash,
#price .price-card .price-installments .currency {
    color: #ffd65f !important
}

.price-installments .currency {
    font-family: "Barlow", sans-serif;
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222f3d;
    margin-top: 5px
}

.price-cash,
.price-fraction,
.price-huge {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #ffd65f
}

.price-huge {
    font-size: 111px;
    line-height: .8;
    margin: 0
}

.price-cash,
.price-fraction {
    font-size: 46px;
    line-height: 1
}

.price-cash {
    font-size: 16px;
    font-weight: 300;
    color: #222f3d;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: left
}

.access-info h3,
.price-old {
    font-weight: 300;
    text-transform: uppercase
}

.price-old {
    font-family: "Barlow", sans-serif;
    font-size: 1.3rem;
    color: rgb(8 8 8);
    margin: 0 0 5px
}

@media (max-width:768px) {
    .price-cash b {
        color: #fff;
        font-weight: 600;
        font-size: 1rem
    }
}

.access-info h3 {
    font-family: "Antonio", sans-serif;
    font-size: 22px;
    color: rgb(29 32 37);
    margin: -15px 0 0
}

@media (max-width:767px) {
    #vsl-box {
        border-radius: 10px;
        box-shadow: 0 6px 0#e5a84d
    }
}