/* ============================================================
   Template Oficial MAXXIMA — CSS
   ============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --red:        #AD1F1F;
    --dark-red:   #990A0A;
    --dark:       #303030;
    --light-gray: #d6d4d4;
    --white:      #FFFFFF;
    --text-gray:  #4c4b4b;
    --green:      #049A6A;
    --black:      #000000;
    --font:       'Poppins', sans-serif;
    --font-cta:   'Raleway', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, #ff007f, #7928ca, #b803b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block; /* Garante que o gradiente renderize perfeitamente */
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }

b, strong { font-weight: 600; }

ul { list-style: none; }

a { text-decoration: none; }

/* ===== RÓTULOS DE BLOCO ===== */
.block-label {
    background-color: var(--red);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-label h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: var(--white);
    text-align: center;
    max-width: 70%;
}


.sec {
    padding: 50px 0;
    width: 100%;
}

.py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }

.bg-white      { background-color: var(--white); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-dark       { background-color: var(--dark); }
.bg-white-radial {
    background: radial-gradient(circle at center, #C4DED6 0%, #ffffff 70%);
}

.col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.gap-8  { gap: 8px  !important; }
.gap-24 { gap: 24px !important; }
.gap-30 { gap: 30px !important; }

/* ===== UTILITÁRIOS DE LARGURA ===== */
.w-29  { max-width: 29%;  width: 29%;  margin-left: auto; margin-right: auto; }
.w-40  { max-width: 40%;  width: 40%;  margin-left: auto; margin-right: auto; }
.w-42  { max-width: 42%;  width: 42%;  margin-left: auto; margin-right: auto; }
.w-46  { max-width: 46%;  width: 46%;  margin-left: auto; margin-right: auto; }
.w-48  { max-width: 48%;  width: 48%;  margin-left: auto; margin-right: auto; }
.w-50  { max-width: 50%;  width: 50%;  margin-left: auto; margin-right: auto; }
.w-52  { max-width: 52%;  width: 52%;  margin-left: auto; margin-right: auto; }
.w-54  { max-width: 45%;  width: 45%;  margin-left: 0; margin-right: 0;}
.w-56  { max-width: 35%;  width: 35%;  margin-left: auto; margin-right: auto; }
.w-58  { max-width: 58%;  width: 58%;  margin-left: auto; margin-right: auto; }
.w-60  { max-width: 60%;  width: 60%;  margin-left: auto; margin-right: auto; }
.w-62  { max-width: 62%;  width: 62%;  margin-left: auto; margin-right: auto; }
.w-70  { max-width: 70%;  width: 70%;  margin-left: auto; margin-right: auto; }
.w-80  { max-width: 60%;  width: 60%;  margin-left: auto; margin-right: auto; }
.w-84  { max-width: 84%;  width: 84%;  margin-left: auto; margin-right: auto; }
.w-86  { max-width: 86%;  width: 86%;  margin-left: auto; margin-right: auto; }

/* ===== TIPOGRAFIA ===== */
.headline {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    color: var(--text-gray);
    text-align: center;
}

.headline-bold {
    font-size: 40px;
    font-weight: 600;
    line-height: 36px;
    color: var(--text-gray);
    text-align: center;
}

.subheadline {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
}

.body-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: var(--text-gray);
}

.white      { color: var(--white) !important; }
.text-center { text-align: center; }

/* ===== LOGO ÍCONE ===== */
.logo-icon { width: 16%; }

/* ===== GRID DE DEPOIMENTOS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid img {
    width: 100%;
    border-radius: 8px;
}

/* ===== CARD VERMELHO — RUMINAÇÃO ===== */
.card-red {
    background-color: var(--dark-red);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.card-img-col { width: 30%; align-items: center;display: flex; justify-content: center;}

.card-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.card-body {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

/* ===== CARDS DE PASSOS ===== */
.step-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.step-label {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.step-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.step-desc {
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
}

.step-img { flex: 1; }

/* ===== GRID DE BENEFÍCIOS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    padding: 0 60px;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.benefit-icon-placeholder {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: #c0c0c0;
    border-radius: 8px;
}

.benefit-text h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
}

/* ===== CARDS DE ENTREGÁVEIS / BÔNUS ===== */
.deliverable-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.deliverable-card.reverse { flex-direction: row-reverse; }

.deliv-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.deliv-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}

.deliv-text p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
}

.deliv-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.deliv-img img { max-width: 80%; }

/* ===== CARD "PARA QUEM SERVE" ===== */
.for-who-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.for-who-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.for-who-img img { max-width: 80%; }

/* ===== RECAPITULANDO ===== */
.recap-card {
    background-color: var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px dotted var(--black);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.recap-row.last { border-bottom: none; }

.recap-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== BLOCO DE PREÇO ===== */
.pricing-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px 50px;
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
}

.pricing-left {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-right: 16px;
}

.pricing-left img { max-width: 100%; }

.pricing-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-img { width: 35%; }

.divider-dashed {
    width: 60%;
    border: none;
    border-top: 2px dashed #ccc;
    margin: 4px 0;
}

.by-only {
    font-size: 20px;
    font-weight: 400;
    color: #66353A;
    text-align: center;
}

.price-display { display: flex; justify-content: center; }

.price-installment {
    font-family: var(--font);
    font-size: 50px;
    font-weight: 700;
    color: var(--green);
    text-align: center;
}

.price-cash {
    font-size: 20px;
    font-weight: 400;
    color: #66353A;
    text-align: center;
}

.btn-cta {
    display: block;
    background: linear-gradient(223deg, #00C356, #049A6A);
    color: var(--white);
    font-family: var(--font-cta);
    font-size: 18px;
    font-weight: 900;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    transition: filter 0.2s;
    cursor: pointer;
}

.btn-cta:hover { filter: brightness(1.1); }

.payment-img { width: 60%; }

/* ===== COMO ACESSAR ===== */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-left: auto;
    margin-right: auto;
}

.access-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: flex-start;
}

.access-text { flex: 1; }

.access-icon {
    font-size: 36px;
    color: var(--dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.access-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.access-card p {
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
}

/* ===== AUTORIDADE ===== */
.author-wrapper {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 20px;
}

.author-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.author-text h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-gray);
}

.author-text h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-gray);
}

.author-text p {
    font-size: 18px;
    color: var(--black);
    line-height: 22px;
}

.author-img { flex: 1; }

/* ===== CONVERSA SÉRIA — OPÇÕES ===== */
.options-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}

.option-card {
    flex: 1;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-bad  { background-color: #FFF1F4; }
.option-good { background-color: #F3FFFB; }

.option-icon       { font-size: 80px; }
.option-icon.bad   { color: #e4343b; }
.option-icon.good  { color: var(--green); }

.option-title      { font-size: 24px; font-weight: 600; line-height: 36px; }
.option-title.bad  { color: #e4343b; }
.option-title.good { color: var(--green); }

.option-card p { font-size: 18px; line-height: 22px; color: var(--black); }

/* ===== ACCORDION FAQ ===== */
.accordion {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: var(--white);
    border: none;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-btn:hover { background: #f5f5f5; }

.accordion-btn::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-btn.active::after { content: '−'; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px;
}

.accordion-content.open {
    max-height: 600px;
    padding: 4px 24px 24px;
}

.accordion-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: var(--dark);
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-main {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--white);
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--white);
    text-align: center;
    max-width: 80%;
}

/* ============================================================
   RESPONSIVO — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Faz todos os blocos ocuparem a largura total, mas deixando 20px de espaço nas laterais */
    .w-29, .w-40, .w-42, .w-46, .w-48, .w-50, .w-52,
    .w-54, .w-56, .w-58, .w-60, .w-62, .w-70, .w-80,
    .w-84, .w-86 { 
        width: 100%; 
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Zerando widths — tudo vira 100% no mobile */
    .w-29, .w-40, .w-42, .w-46, .w-48, .w-50, .w-52,
    .w-54, .w-56, .w-58, .w-60, .w-62, .w-70, .w-80,
    .w-84, .w-86 { max-width: 100%; width: 100%; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .card-red { flex-direction: column; }
    .card-img-col { width: 100%; }

    .step-card { flex-direction: column; }

    .benefits-grid { grid-template-columns: 1fr; padding: 0; }

    .deliverable-card,
    .deliverable-card.reverse { flex-direction: column; }
    .deliv-img img { max-width: 70%; margin: 0 auto; }

    .for-who-card { flex-direction: column; }

    .recap-card { padding: 24px; }
    .recap-row { font-size: 14px; }
    .recap-price { font-size: 18px; }

    .pricing-wrapper {
        flex-direction: column;
        padding: 32px;
    }
    .pricing-left, .pricing-right { width: 100%; }
    .pricing-left { padding-right: 0; margin-bottom: 16px; }
    .price-installment { font-size: 40px; }

    .access-grid { grid-template-columns: 1fr; }
    .access-card { flex-direction: column-reverse; }

    .author-wrapper { flex-direction: column; max-width: 100%; padding: 0; }

    .options-row { flex-direction: column; }

    .footer { padding: 20px 30px; }
    .footer-disclaimer { max-width: 100%; }
}

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid { padding: 0 20px; }

    .w-40, .w-42, .w-46, .w-48 { max-width: 70%; width: 70%; }
    .w-50, .w-52, .w-54, .w-56 { max-width: 80%; width: 80%; }

    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .access-card:last-child { grid-column: 1 / -1; }
}

.icon{
mix-blend-mode: multiply; 

}

/* ============================================================
   IDENTIDADE VISUAL — SUA BLOGUEIRA DE IA
   Inspirada na referência: clara, vibrante e orientada à conversão
   ============================================================ */
:root {
    --red: #f21d68;
    --dark-red: #bc1256;
    --dark: #120d1d;
    --light-gray: #f8f5ff;
    --white: #ffffff;
    --text-gray: #151220;
    --green: #14b83f;
    --black: #0b0912;
    --pink: #ee0b8f;
    --purple: #8427ed;
    --lime: #39cf4a;
    --border: rgba(108, 62, 151, 0.14);
    --shadow: 0 14px 34px rgba(48, 21, 73, 0.12);
}

html { scroll-behavior: smooth; }

body {
    background: #fbf9ff;
    color: var(--text-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(238, 11, 143, 0.2); }

.text-gradient {
    background: linear-gradient(100deg, #ef0a91 5%, #9b16dd 54%, #19b53f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec {
    position: relative;
    isolation: isolate;
    padding: 72px 0;
    overflow: hidden;
}

.sec::before,
.sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.16;
    pointer-events: none;
}

.sec::before { top: -180px; left: -150px; background: #8855ff; }
.sec::after { right: -170px; bottom: -190px; background: #f30ba0; }

.bg-white,
.bg-light-gray,
.bg-white-radial {
    background: linear-gradient(135deg, #ffffff 0%, #fcf9ff 48%, #f7f2ff 100%);
}

.bg-light-gray:nth-of-type(4n + 1) {
    background: linear-gradient(145deg, #f8f4ff 0%, #ffffff 55%, #f4fff6 100%);
}

.bg-dark {
    background:
        radial-gradient(circle at 10% 15%, rgba(163, 42, 235, 0.26), transparent 30%),
        radial-gradient(circle at 92% 88%, rgba(238, 11, 143, 0.19), transparent 34%),
        linear-gradient(145deg, #0d0916, #1b1028 55%, #10131a);
}

.col-center { gap: 28px; padding-inline: 24px; }

.headline,
.headline-bold {
    color: var(--black);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.headline {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.16;
    font-weight: 600;
}

.headline-bold {
    font-size: clamp(32px, 3.35vw, 50px);
    line-height: 1.08;
    font-weight: 700;
}

.headline b,
.headline-bold b { font-weight: 700; }

.subheadline { font-size: 21px; color: inherit; }
.body-text { font-size: clamp(21px, 2.15vw, 30px); line-height: 1.35; }

.logo-icon {
    width: clamp(150px, 16%, 230px);
    filter: drop-shadow(0 10px 18px rgba(89, 24, 126, 0.16));
}

/* Imagem principal e imagens editoriais */
.col-center > img.w-54,
.col-center > img.w-56,
.col-center > img.w-70 {
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.col-center > img.w-54 { border: 1px solid rgba(255, 255, 255, 0.72); }

.card-red,
.deliverable-card,
.for-who-card,
.recap-card,
.pricing-wrapper,
.access-card,
.option-card,
.accordion-item {
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card-red {
    background: linear-gradient(135deg, #d8115d, #9d126f 56%, #6220ad);
    border-color: rgba(255, 255, 255, 0.18);
}

.card-red img,
.deliverable-card img,
.for-who-img img,
.author-img img { border-radius: 18px; }

.card-title,
.deliv-title,
.access-card h3,
.author-text h2,
.author-text h3 { font-weight: 700; letter-spacing: -0.025em; }

.deliverable-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deliverable-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(48, 21, 73, 0.17);
}

.deliv-title { color: #641bb4; }

.for-who-card {
    background: linear-gradient(135deg, #ffffff, #f6fff8);
    border-radius: 24px;
}

.checklist li { color: var(--black); }

.recap-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
}

.recap-row { border-color: rgba(116, 51, 147, 0.25); color: var(--black); }
.recap-price { color: #14a83a; }

.pricing-wrapper {
    border-radius: 26px;
    background: linear-gradient(145deg, #fff, #fbf7ff);
    border-color: rgba(201, 113, 238, 0.28);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.badge-img { filter: drop-shadow(0 8px 15px rgba(98, 32, 173, 0.13)); }
.divider-dashed { border-color: rgba(125, 73, 148, 0.25); }
.by-only, .price-cash { color: #4e4057; }
.price-installment {
    color: var(--green);
    letter-spacing: -0.055em;
    text-shadow: 0 3px 0 rgba(0, 126, 43, 0.08);
}

.btn-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #28d94a 0%, #08a92f 100%);
    border: 1px solid #069629;
    border-radius: 14px;
    box-shadow: 0 7px 0 #087c27, 0 14px 24px rgba(10, 166, 48, 0.24);
    padding: 18px 20px;
    letter-spacing: -0.015em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 9px 0 #087c27, 0 17px 28px rgba(10, 166, 48, 0.28);
}

.btn-cta:active { transform: translateY(4px); box-shadow: 0 3px 0 #087c27; }

.access-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
}

.access-icon { color: var(--pink); }

.author-wrapper {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.author-text h2 { color: #7219bd; }

.option-card { border-radius: 22px; }
.option-bad { background: linear-gradient(145deg, #fff, #fff0f5); }
.option-good { background: linear-gradient(145deg, #fff, #effff4); }

.accordion { gap: 12px; }
.accordion-item { border-radius: 16px; }
.accordion-btn { padding: 22px 26px; }
.accordion-btn:hover { background: #fbf6ff; }
.accordion-btn::after { color: var(--pink); font-weight: 600; }

.footer {
    background: linear-gradient(145deg, #0d0916, #1a1025);
    border-top: 1px solid rgba(234, 96, 255, 0.2);
}

@media (max-width: 768px) {
    html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
    .sec { padding: 50px 0; }
    .sec::before, .sec::after { width: 220px; height: 220px; filter: blur(55px); }
    .col-center { gap: 22px; padding-inline: 18px; min-width: 0; }
    .col-center > * { min-width: 0; max-width: 100%; }

    .w-29, .w-40, .w-42, .w-46, .w-48, .w-50, .w-52,
    .w-54, .w-56, .w-58, .w-60, .w-62, .w-70, .w-80,
    .w-84, .w-86 {
        padding-left: 0;
        padding-right: 0;
    }

    .headline { font-size: clamp(27px, 8vw, 34px); line-height: 1.18; width: 100%; }
    .headline-bold { font-size: clamp(30px, 9vw, 39px); line-height: 1.1; width: 100%; }
    .headline, .headline-bold, .subheadline, .body-text { overflow-wrap: anywhere; }
    .subheadline { font-size: 18px; }
    .body-text { font-size: 21px; }
    .logo-icon { width: 148px; }

    .col-center > img.w-54,
    .col-center > img.w-56,
    .col-center > img.w-70 { border-radius: 16px; }

    .card-red,
    .deliverable-card,
    .for-who-card,
    .recap-card,
    .pricing-wrapper,
    .option-card { padding: 22px; border-radius: 18px; }

    .deliv-title, .card-title { font-size: 23px; line-height: 1.2; }
    .deliv-text p, .card-body { line-height: 1.55; }
    .checklist li { font-size: 16px; }

    .recap-row { align-items: flex-start; gap: 12px; }
    .recap-price { flex-shrink: 0; }

    .pricing-wrapper { margin-inline: 18px; width: calc(100% - 36px); }
    .price-installment { font-size: 38px; }
    .btn-cta { font-size: 17px; padding: 17px 14px; }

    .access-card { padding: 26px; }
    .author-wrapper { margin-inline: 18px; padding: 24px; }
    .author-img img { width: 100%; }
    .option-icon { font-size: 62px; }
    .accordion-btn { padding: 18px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ============================================================
   REFINAMENTO DOS BLOCOS INTERNOS
   Linguagem visual das peças complementares da campanha
   ============================================================ */

/* As peças da campanha usam uma página quase toda clara. */
.bg-dark {
    background:
        radial-gradient(circle at 4% 8%, rgba(123, 40, 235, 0.09), transparent 25%),
        radial-gradient(circle at 96% 90%, rgba(238, 11, 143, 0.08), transparent 28%),
        linear-gradient(145deg, #ffffff, #faf8ff 52%, #f6fff8);
}

.bg-dark .white { color: var(--black) !important; }
.bg-dark .card-red .white { color: var(--white) !important; }

/* Filete colorido visto sob os títulos das artes. */
.sec .headline-bold::after,
.sec .headline::after {
    content: "";
    display: block;
    width: 76px;
    height: 4px;
    margin: 17px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--green));
    opacity: 0.88;
}

.sec .headline + .headline::after,
.pricing-right .headline::after { display: none; }

/* Bloco do problema */
.bg-dark .subheadline { color: #433a4d; font-weight: 600; }

.bg-dark > .col-center > img.w-54 {
    padding: 9px;
    background: #fff;
    border-color: rgba(114, 32, 204, 0.13);
    box-shadow: 0 16px 42px rgba(62, 27, 88, 0.14);
}

.card-red {
    background: linear-gradient(135deg, #681fd4 0%, #d10f93 62%, #ef2674 100%);
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(133, 25, 148, 0.22);
}

/* Entregáveis: cabeçalhos e imagens com as três cores da marca. */
.deliverable-card { position: relative; overflow: hidden; }

.deliverable-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--purple), var(--pink));
}

.deliverable-card:nth-of-type(3n + 1)::before {
    background: linear-gradient(180deg, #10b63c, #73d542);
}

.deliverable-card:nth-of-type(3n + 2)::before {
    background: linear-gradient(180deg, #f20a8b, #ff5b9c);
}

.deliverable-card:nth-of-type(3n + 1) .deliv-title { color: #079736; }
.deliverable-card:nth-of-type(3n + 2) .deliv-title { color: #dc087d; }

.deliv-img img {
    filter: drop-shadow(0 13px 18px rgba(72, 27, 106, 0.12));
}

/* Para quem é */
.for-who-card {
    padding: 38px;
    border-color: rgba(43, 181, 72, 0.18);
}

.checklist { width: 100%; gap: 0; }

.checklist li {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(103, 68, 125, 0.18);
    line-height: 1.45;
}

.checklist li:last-child { border-bottom: 0; }
.for-who-img img { box-shadow: 0 13px 28px rgba(38, 22, 48, 0.15); }

/* Recapitulação */
.recap-card { padding: 18px 32px; }

.recap-row {
    min-height: 72px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(113, 57, 139, 0.22);
}

.recap-row > span:first-child { padding-right: 20px; }

.recap-price {
    min-width: 112px;
    padding: 8px 12px;
    border: 1px solid rgba(238, 11, 143, 0.13);
    border-radius: 12px;
    background: #fff7fc;
    color: #e20982;
    text-align: center;
}

/* Oferta */
.pricing-wrapper {
    border-color: rgba(122, 43, 204, 0.14);
    background:
        radial-gradient(circle at 12% 80%, rgba(114, 28, 219, 0.06), transparent 30%),
        #fff;
}

.pricing-left img {
    filter: drop-shadow(0 18px 24px rgba(43, 18, 65, 0.18));
}

.pricing-right {
    justify-content: center;
    padding: 18px 32px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #fbf8ff);
    box-shadow: inset 0 0 0 1px rgba(122, 43, 204, 0.08);
}

.by-only { font-weight: 600; }
.price-cash b { color: var(--purple); }

/* Acesso: ícones grandes sobre círculos suaves, como nas referências. */
.access-grid { gap: 14px; }

.access-card {
    min-height: 220px;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding: 32px 25px;
}

.access-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0;
    border-radius: 50%;
    background: #f2eaff;
    color: #7218dc;
    font-size: 40px;
}

.access-card:nth-child(2) .access-icon { background: #eaf8ed; color: #0ca33a; }
.access-card:nth-child(3) .access-icon { background: #fff0f8; color: #ea0a83; }
.access-card:nth-child(2) h3 { color: #079536; }
.access-card:nth-child(3) h3 { color: #d90979; }

/* Autoridade */
.author-wrapper {
    background: linear-gradient(145deg, rgba(248, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
    border-color: rgba(116, 45, 189, 0.13);
    align-items: stretch;
}

.author-text h2 {
    font-size: clamp(30px, 3vw, 44px);
    color: #15102c;
    line-height: 1.1;
}

.author-text h3 { font-size: clamp(23px, 2.2vw, 32px); }
.author-text p { line-height: 1.55; color: #1c1723; }
.author-img { display: flex; align-items: center; justify-content: center; }
.author-img img { box-shadow: 0 16px 35px rgba(36, 22, 49, 0.16); }

/* Duas opções */
.option-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    justify-content: center;
}

.option-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
}

.option-bad { border-color: rgba(230, 40, 76, 0.16); }
.option-good { border-color: rgba(12, 166, 60, 0.17); }
.option-bad::after { background: radial-gradient(circle, #ffb3c1, transparent 68%); }
.option-good::after { background: radial-gradient(circle, #a9eabf, transparent 68%); }
.option-title { text-transform: uppercase; }

/* FAQ */
.accordion-item { border-left: 4px solid var(--purple); }
.accordion-item:nth-child(2) { border-left-color: var(--pink); }
.accordion-item:nth-child(3) { border-left-color: var(--green); }
.accordion-content.open { background: #fdfbff; }

@media (max-width: 768px) {
    .sec .headline-bold::after,
    .sec .headline::after { width: 62px; height: 3px; margin-top: 13px; }

    .bg-dark > .col-center > img.w-54 { padding: 5px; }
    .for-who-card { padding: 22px; }
    .checklist li { padding: 12px 0; }

    .recap-card { padding: 12px 18px; }
    .recap-row { min-height: 0; padding: 13px 0; }
    .recap-row > span:first-child { padding-right: 0; }
    .recap-price { min-width: 84px; padding: 7px; font-size: 16px; }

    .pricing-right { padding: 16px 8px; }
    .access-card { min-height: 0; padding: 28px 22px; }
    .access-icon { width: 72px; height: 72px; font-size: 34px; }

    .author-wrapper { gap: 26px; }
    .author-text h2 { font-size: 32px; }
    .author-text h3 { font-size: 24px; }
    .option-card { min-height: 0; }
}

/* Fundo contínuo entre as seções, sem recortes retangulares. */
body {
    background:
        radial-gradient(circle at 8% 12%, rgba(121, 40, 202, 0.08), transparent 24%),
        radial-gradient(circle at 92% 38%, rgba(238, 11, 143, 0.07), transparent 23%),
        radial-gradient(circle at 12% 72%, rgba(20, 184, 63, 0.06), transparent 22%),
        #fbfaff;
    background-attachment: fixed;
}

.bg-white,
.bg-light-gray,
.bg-white-radial,
.bg-light-gray:nth-of-type(4n + 1),
.bg-dark {
    background: transparent;
}

.sec::before,
.sec::after {
    display: none;
}

/* Alerta de identificação do bloco "para quem é". */
.identification-alert {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    border: 1px solid rgba(124, 42, 203, 0.18);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 242, 255, 0.98));
    box-shadow: 0 15px 34px rgba(62, 26, 89, 0.13);
    color: var(--black) !important;
    font-size: clamp(23px, 2.3vw, 34px);
    line-height: 1.25;
    text-align: left;
}

.identification-alert::before {
    content: "⚠";
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(145deg, #7624e8, #e70a8a);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    box-shadow: 0 9px 20px rgba(150, 27, 181, 0.23);
}

.identification-alert::after { display: none !important; }

@media (max-width: 768px) {
    body { background-attachment: scroll; }

    .identification-alert {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 15px;
        padding: 20px;
        border-radius: 18px;
        font-size: 22px;
    }

    .identification-alert::before {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        font-size: 29px;
    }
}

/* Evita custo de layout e pintura das seções ainda fora da tela. */
@supports (content-visibility: auto) {
    .sec:nth-of-type(n + 3) {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}

/* Acabamento mais próximo das artes de referência. */
.logo-icon {
    width: clamp(320px, 33vw, 430px);
    max-width: 430px;
}

.three-step-card,
.deliverable-card,
.for-who-card,
.recap-card,
.access-card,
.option-card,
.accordion-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 253, 0.98));
    border-color: rgba(225, 60, 136, 0.13);
    box-shadow: 0 12px 30px rgba(74, 35, 83, 0.1);
}

.three-step-card,
.deliverable-card,
.for-who-card,
.pricing-wrapper,
.author-wrapper,
.option-card {
    outline: 1px solid rgba(255, 255, 255, 0.72);
    outline-offset: -2px;
}

.three-steps-heading h2,
.headline,
.headline-bold {
    color: #11101b;
}

.step-badge {
    box-shadow: 0 7px 15px rgba(232, 59, 131, 0.2);
}

@media (max-width: 768px) {
    .logo-icon {
        width: 285px;
        max-width: 78vw;
    }

    .three-step-card,
    .deliverable-card,
    .card-red,
    .for-who-card,
    .recap-card,
    .access-card,
    .option-card,
    .identification-alert {
        border-radius: 20px;
    }

    .access-card {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        gap: 18px;
        min-height: 170px;
        padding: 24px 22px;
        text-align: left;
    }

    .access-card .access-icon {
        grid-column: 1;
        grid-row: 1;
        width: 68px;
        height: 68px;
        margin: 0;
        font-size: 32px;
    }

    .access-card .access-text {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .access-card h3 {
        display: block;
        min-height: 0;
        margin-bottom: 7px;
        text-align: left;
    }

    .access-card p {
        max-width: none;
        margin: 0;
        text-align: left;
    }
}

/* Logo principal com mais presença visual. */
.logo-icon {
    width: clamp(240px, 24vw, 330px);
    max-width: 330px;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 220px;
        max-width: 68vw;
    }
}

/* ============================================================
   AJUSTES FINAIS DE PROPORÇÃO E ALINHAMENTO
   ============================================================ */

.sec { padding-block: 64px; }

.col-center {
    width: min(100%, 1180px);
    margin-inline: auto;
}

/* Evita títulos estreitos demais e quebras excessivas no desktop. */
.headline.w-40,
.headline.w-42,
.headline.w-46,
.headline.w-48,
.headline.w-50,
.headline.w-52,
.headline.w-54,
.headline.w-56,
.headline.w-58,
.headline.w-70,
.headline-bold.w-40,
.headline-bold.w-42,
.headline-bold.w-46,
.headline-bold.w-48,
.headline-bold.w-50,
.headline-bold.w-52,
.headline-bold.w-54,
.headline-bold.w-56,
.headline-bold.w-58,
.headline-bold.w-70 {
    width: min(880px, calc(100% - 48px));
    max-width: 880px;
}

.body-text.w-48 {
    width: min(720px, calc(100% - 48px));
    max-width: 720px;
}

.logo-icon { margin-bottom: 2px; }

/* Imagens editoriais com proporções mais equilibradas. */
.col-center > img.w-54 {
    width: min(680px, calc(100% - 48px));
    max-width: 680px;
}

.bg-dark > .col-center > img.w-54 {
    width: min(720px, calc(100% - 48px));
    max-width: 720px;
}

/* Padronização da largura dos componentes principais. */
.deliverable-card.w-80,
.for-who-card.w-80,
.accordion.w-80 {
    width: min(900px, calc(100% - 48px));
    max-width: 900px;
}

.card-red.w-56 {
    width: min(760px, calc(100% - 48px));
    max-width: 760px;
}

.recap-card.w-60 {
    width: min(820px, calc(100% - 48px));
    max-width: 820px;
}

.pricing-wrapper.w-84,
.access-grid.w-86,
.options-row.w-86 {
    width: min(1080px, calc(100% - 48px));
    max-width: 1080px;
}

.deliverable-card { min-height: 290px; }
.deliv-text { padding-inline: 8px; }
.deliv-img img { max-height: 245px; object-fit: contain; }

.card-img-col img {
    width: min(100%, 180px);
    margin-inline: auto;
}

.for-who-card { align-items: stretch; }
.checklist-col { padding-inline: 8px; }
.for-who-img img { width: 100%; max-width: 380px; object-fit: cover; }

.pricing-left { align-items: center; }
.pricing-left img { width: min(100%, 520px); }
.pricing-right { min-height: 500px; }
.btn-cta { max-width: 470px; }

.access-card h3 { min-height: 58px; display: grid; place-items: center; }
.access-card p { max-width: 280px; margin-inline: auto; }

.author-wrapper {
    width: min(1040px, calc(100% - 48px));
    max-width: 1040px;
    margin-inline: auto;
}

.author-text { flex: 1.15; }
.author-img { flex: 0.85; }
.author-img img { width: 100%; max-width: 410px; }

.option-card { padding: 42px; }
.option-card p { max-width: 440px; }

.identification-alert {
    width: min(820px, calc(100% - 48px)) !important;
    max-width: 820px !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .headline.w-40,
    .headline.w-42,
    .headline.w-46,
    .headline.w-48,
    .headline.w-50,
    .headline.w-52,
    .headline.w-54,
    .headline.w-56,
    .headline.w-58,
    .headline.w-70,
    .headline-bold.w-40,
    .headline-bold.w-42,
    .headline-bold.w-46,
    .headline-bold.w-48,
    .headline-bold.w-50,
    .headline-bold.w-52,
    .headline-bold.w-54,
    .headline-bold.w-56,
    .headline-bold.w-58,
    .headline-bold.w-70 {
        width: min(780px, calc(100% - 48px));
        max-width: 780px;
    }

    .pricing-wrapper { padding-inline: 32px; }
    .access-card { padding-inline: 18px; }
}

@media (max-width: 768px) {
    .sec { padding-block: 46px; }
    .col-center { padding-inline: 18px; }

    .headline.w-40,
    .headline.w-42,
    .headline.w-46,
    .headline.w-48,
    .headline.w-50,
    .headline.w-52,
    .headline.w-54,
    .headline.w-56,
    .headline.w-58,
    .headline.w-70,
    .headline-bold.w-40,
    .headline-bold.w-42,
    .headline-bold.w-46,
    .headline-bold.w-48,
    .headline-bold.w-50,
    .headline-bold.w-52,
    .headline-bold.w-54,
    .headline-bold.w-56,
    .headline-bold.w-58,
    .headline-bold.w-70,
    .body-text.w-48,
    .col-center > img.w-54,
    .bg-dark > .col-center > img.w-54,
    .deliverable-card.w-80,
    .for-who-card.w-80,
    .accordion.w-80,
    .card-red.w-56,
    .recap-card.w-60,
    .pricing-wrapper.w-84,
    .access-grid.w-86,
    .options-row.w-86,
    .author-wrapper,
    .identification-alert {
        width: 100% !important;
        max-width: 100% !important;
    }

    .deliverable-card { min-height: 0; gap: 20px; }
    .deliv-text { padding-inline: 0; text-align: left; }
    .deliv-img img { max-height: 230px; }

    .card-red { gap: 18px; }
    .card-img-col img { max-width: 135px; }

    .for-who-img img { max-width: 100%; }
    .pricing-right { min-height: 0; }
    .pricing-left img { max-width: 340px; }

    .access-card h3 { min-height: 0; }
    .author-wrapper { margin-inline: 0; }
    .option-card { padding: 26px 22px; }
    .option-card p { max-width: none; }
}

/* ============================================================
   BLOCO — 3 PASSOS
   ============================================================ */
.three-steps-section { padding-top: 70px; }

.three-steps {
    width: min(920px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.three-steps-heading { max-width: 780px; margin-bottom: 8px; text-align: center; }

.three-steps-heading h2 {
    color: #393743;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.three-steps-heading strong { color: #e83b83; font-weight: 700; }
.three-steps-heading span { font-size: 0.65em; letter-spacing: -0.025em; }

.three-steps-heading::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #ef4089, #f46ba4);
}

.three-step-card {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(390px, 1.35fr);
    gap: 28px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(222, 70, 139, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 35px rgba(65, 35, 73, 0.1);
}

.three-step-card::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    opacity: 0.28;
    background-image: radial-gradient(#ef4089 2px, transparent 2px);
    background-size: 13px 13px;
    pointer-events: none;
}

.three-step-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-bottom: 18px;
    padding: 0 18px 0 7px;
    border-radius: 99px;
    background: linear-gradient(100deg, #eb3d83, #fa76aa);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.step-badge i { display: grid; place-items: center; width: 32px; height: 32px; font-size: 18px; }

.three-step-copy h3 {
    color: #34323d;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.three-step-copy h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 14px 0 17px;
    border-radius: 99px;
    background: #ed4388;
}

.three-step-copy h3 strong { color: #e83d82; font-weight: 700; }
.three-step-copy > p { color: #28252e; font-size: 17px; line-height: 1.48; }

.three-step-image { min-width: 0; align-self: stretch; }

.three-step-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 470px;
    object-fit: cover;
    border-radius: 22px;
}

.step-benefits {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(229, 68, 136, 0.1);
    border-radius: 20px;
    background: #fffafd;
}

.step-benefits > div {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 18px;
    text-align: center;
}

.step-benefits > div + div { border-left: 1px solid rgba(229, 68, 136, 0.12); }

.step-benefits i,
.step-results i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffe7f1;
    color: #ea4387;
    font-size: 20px;
}

.step-benefits p { display: flex; flex-direction: column; color: #26232d; font-size: 14px; line-height: 1.3; }
.step-benefits p span { margin-top: 3px; }

.step-results { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.step-results li { display: flex; align-items: center; gap: 12px; color: #28252e; font-size: 14px; line-height: 1.35; }
.step-results i { width: 38px; height: 38px; font-size: 17px; }

@media (max-width: 768px) {
    .three-steps-section { padding-top: 50px; }
    .three-steps { width: calc(100% - 30px); gap: 18px; }
    .three-steps-heading { padding-inline: 10px; }
    .three-steps-heading h2 { font-size: clamp(30px, 9vw, 40px); }
    .three-steps-heading span { font-size: 0.62em; }
    .three-steps-heading::after { width: 105px; height: 3px; margin-top: 14px; }

    .three-step-card,
    .step-one { grid-template-columns: minmax(0, 1fr); gap: 20px; padding: 20px; border-radius: 22px; }

    .three-step-card::after { top: 20px; right: 18px; }
    .step-badge { min-height: 40px; margin-bottom: 15px; font-size: 15px; }
    .three-step-copy h3 { font-size: 30px; }
    .three-step-copy > p { font-size: 16px; }

    .three-step-image img,
    .step-one .three-step-image img {
        min-height: 0;
        height: auto;
        max-height: none;
        aspect-ratio: 4 / 3;
        object-position: center;
        border-radius: 17px;
    }

    .step-benefits { grid-template-columns: 1fr; }
    .step-benefits > div { min-height: 0; flex-direction: row; justify-content: flex-start; text-align: left; }
    .step-benefits > div + div { border-left: 0; border-top: 1px solid rgba(229, 68, 136, 0.12); }
    .step-benefits p { font-size: 14px; }
}

/* Centralização consistente de todos os cards no mobile. */
@media (max-width: 768px) {
    .col-center > .w-29,
    .col-center > .w-40,
    .col-center > .w-42,
    .col-center > .w-46,
    .col-center > .w-48,
    .col-center > .w-50,
    .col-center > .w-52,
    .col-center > .w-54,
    .col-center > .w-56,
    .col-center > .w-58,
    .col-center > .w-60,
    .col-center > .w-62,
    .col-center > .w-70,
    .col-center > .w-80,
    .col-center > .w-84,
    .col-center > .w-86 {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .sec > .pricing-wrapper.w-84,
    .sec > .author-wrapper {
        width: calc(100% - 36px) !important;
        max-width: calc(100% - 36px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .three-step-card,
    .deliverable-card,
    .card-red,
    .for-who-card,
    .recap-card,
    .access-grid,
    .access-card,
    .option-card,
    .accordion,
    .identification-alert {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .pricing-wrapper,
    .author-wrapper,
    .three-step-card,
    .deliverable-card,
    .card-red,
    .for-who-card,
    .recap-card,
    .access-card,
    .option-card,
    .identification-alert {
        box-sizing: border-box;
    }
}

/* Consolidação final da identidade visual. */
.logo-icon {
    width: clamp(320px, 33vw, 430px);
    max-width: 430px;
}

.three-step-card,
.deliverable-card,
.for-who-card,
.recap-card,
.access-card,
.option-card,
.accordion-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 252, 0.99));
    border-color: rgba(225, 60, 136, 0.13);
    box-shadow: 0 12px 30px rgba(74, 35, 83, 0.1);
}

.step-badge { box-shadow: 0 7px 15px rgba(232, 59, 131, 0.2); }

@media (max-width: 768px) {
    .logo-icon {
        width: 285px;
        max-width: 78vw;
    }

    .access-card {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        gap: 18px;
        min-height: 170px;
        padding: 24px 22px;
        text-align: left;
    }

    .access-card .access-icon {
        grid-column: 1;
        grid-row: 1;
        width: 68px;
        height: 68px;
        margin: 0;
        font-size: 32px;
    }

    .access-card .access-text {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .access-card h3 {
        display: block;
        min-height: 0;
        margin-bottom: 7px;
        text-align: left;
    }

    .access-card p {
        max-width: none;
        margin: 0;
        text-align: left;
    }
}
/* ===== CARTAO: ONDE VENDER ===== */
.selling-channels-card {
    position: relative; z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 34px auto 8px; padding: 30px 32px 28px;
    overflow: hidden; border: 2px solid transparent; border-radius: 30px;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(115deg, #d76dff, #873cff 55%, #ed73d4) border-box;
    box-shadow: 0 16px 38px rgba(113, 50, 168, .14);
}
.selling-channels-card h2 {
    margin-bottom: 26px; color: #151631; font-size: clamp(25px, 2.4vw, 39px);
    font-weight: 700; line-height: 1.18; text-align: center;
}
.selling-channels-card h2 span { color: #a100eb; }
.selling-channels-list { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); align-items: stretch; }
.selling-channel { min-width: 0; padding: 4px 14px 0; text-align: center; }
.selling-channel + .selling-channel { border-left: 1px solid #eadff1; }
.selling-channel-icon {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 82px; height: 82px; margin: 0 auto 15px; color: #fff; font-size: 51px; line-height: 1;
}
.selling-channel h3 { color: #17172f; font-size: clamp(14px, 1.25vw, 19px); font-weight: 700; line-height: 1.25; }
.channel-tiktok .selling-channel-icon { border-radius: 50%; background: #050505; text-shadow: -3px 0 #25f4ee, 3px 0 #fe2c55; }
.channel-shopee .selling-channel-icon { color: #f4511e; }
.channel-shopee .selling-channel-icon i { font-size: 72px; }
.channel-shopee .selling-channel-icon b {
    position: absolute; top: 28px; left: 0; width: 100%; color: #fff; font-size: 26px; font-weight: 500;
}
.channel-mercado-livre .selling-channel-icon {
    width: 88px; height: 62px; margin-top: 10px; margin-bottom: 25px; color: #273b8f;
    font-size: 42px; border: 2px solid #273b8f; border-radius: 50%; background: #ffe600;
}
.channel-store .selling-channel-icon { color: #8d35ca; font-size: 66px; filter: drop-shadow(0 5px 0 #d7a2f2); }
.channel-online-store .selling-channel-icon { color: #962bc7; border-radius: 50%; background: #efd2ff; font-size: 42px; }
.channel-instagram .selling-channel-icon {
    border-radius: 22px; font-size: 61px;
    background: radial-gradient(circle at 32% 100%, #ffd600 0 22%, #ff7a00 34%, #ff0169 56%, #d300c5 74%, #7638fa 100%);
}
.channel-youtube .selling-channel-icon { color: #f50914; font-size: 72px; }
@media (max-width: 900px) {
    .selling-channels-card { width: min(680px, calc(100% - 36px)); padding: 27px 22px 24px; border-radius: 24px; }
    .selling-channels-list { grid-template-columns: repeat(4, 1fr); row-gap: 25px; }
    .selling-channel:nth-child(5) { border-left: 0; }
    .selling-channel h3 { font-size: 14px; }
}
@media (max-width: 560px) {
    .selling-channels-card { width: calc(100% - 28px); margin-top: 18px; padding: 24px 12px 22px; border-radius: 20px; }
    .selling-channels-card h2 { margin: 0 8px 22px; font-size: 23px; }
    .selling-channels-list { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
    .selling-channel { padding-inline: 8px; }
    .selling-channel:nth-child(odd) { border-left: 0; }
    .selling-channel-icon { transform: scale(.9); margin-bottom: 9px; }
    .channel-mercado-livre .selling-channel-icon { margin-bottom: 19px; }
}

/* ===== PASSO 4: VIDEO ===== */
.video-step-section {
    padding: 28px 18px 48px;
    background: #f4f2f7;
}
.video-step-card {
    position: relative;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 24px 30px 18px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 20px;
    color: #fff;
    background:
        linear-gradient(#17001f, #17001f) padding-box,
        linear-gradient(115deg, #7d21ff, #e728bd 50%, #43ecdd) border-box;
    box-shadow: 0 18px 45px rgba(42, 0, 66, .28), inset 0 0 38px rgba(231, 40, 189, .2);
}
.video-flow-heading {
    max-width: 870px;
    margin: 0 auto 18px;
    text-align: center;
}
.video-flow-heading h2 {
    margin: 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
    font-weight: 800;
}
.video-flow-heading strong { color: #ff24b8; }
.video-flow-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 7px 2px 0;
    scrollbar-width: thin;
}
.video-flow-scroll::-webkit-scrollbar { height: 6px; }
.video-flow-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 36, 184, .45);
}
.video-flow {
    display: grid;
    grid-template-columns: 128px 30px 144px 30px 144px 30px 144px 30px 150px;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    min-width: 910px;
    margin: 0 auto;
}
.video-flow-step {
    position: relative;
    min-width: 0;
    text-align: center;
}
.flow-number {
    position: absolute;
    z-index: 3;
    top: -9px;
    left: -9px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff38c9, #df0087);
    box-shadow: 0 0 16px rgba(242, 27, 190, .62);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}
.flow-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 172px;
    overflow: hidden;
    border: 2px solid #e728bd;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(48, 7, 67, .96), rgba(18, 0, 31, .98));
    box-shadow: inset 0 0 25px rgba(173, 16, 196, .16), 0 0 16px rgba(222, 21, 205, .16);
}
.video-flow-step h3 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
}
.flow-arrow {
    justify-self: center;
    color: #fff;
    font-size: 27px;
    filter: drop-shadow(0 0 7px rgba(255,255,255,.35));
    transform: translateY(-13px);
}
.flow-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flow-prompt .flow-visual {
    align-items: stretch;
    padding: 11px 9px;
}
.flow-prompt p {
    width: 100%;
    margin: 0;
    padding: 13px 11px;
    border: 1px solid rgba(239, 55, 201, .45);
    border-radius: 8px;
    background: rgba(20, 0, 31, .72);
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
}
.ai-orb {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 4px solid #e833ff;
    border-radius: 50%;
    box-shadow: 0 0 14px #cf22ff, 0 0 34px rgba(207,34,255,.72), inset 0 0 21px rgba(207,34,255,.5);
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}
.flow-ai .flow-visual > p {
    margin: 13px 0 7px;
    font-size: 12px;
}
.ai-progress {
    width: 74%;
    height: 4px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255,255,255,.18);
}
.ai-progress i {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d91cc3, #fff);
}
.video-step-player {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.video-step-player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-step-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255,255,255,.86);
    border-radius: 50%;
    background: rgba(217, 0, 133, .84);
    box-shadow: 0 0 22px rgba(236, 31, 188, .65);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.video-step-play i {
    margin-left: 4px;
    font-size: 17px;
}
.video-step-player.is-playing .video-step-play { opacity: 0; }
.video-mini-progress {
    position: absolute;
    right: 10px;
    bottom: 8px;
    left: 10px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
}
.video-mini-progress::before {
    display: block;
    width: 46%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #cf22ff, #ff38c9);
    content: "";
}
.flow-sales .flow-visual {
    align-items: stretch;
    padding: 16px 12px 11px;
    border-color: #ffc7f1;
    background: #fff8ff;
    color: #23202c;
    text-align: left;
}
.flow-sales small {
    font-size: 11px;
    font-weight: 800;
}
.flow-sales strong {
    margin-top: 8px;
    color: #10a83d;
    font-size: 25px;
    line-height: 1.1;
}
.sales-growth {
    margin-top: 3px;
    color: #5b8064;
    font-size: 10px;
}
.flow-sales svg {
    width: 100%;
    height: 48px;
    margin-top: 17px;
    overflow: visible;
}
.flow-sales polyline {
    fill: none;
    stroke: #cc73ed;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (max-width: 620px) {
    .video-step-section { padding: 20px 8px 34px; }
    .video-step-card {
        padding: 16px 9px 13px;
        border-radius: 15px;
    }
    .video-flow-heading {
        max-width: 320px;
        margin-bottom: 12px;
    }
    .video-flow-heading h2 {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.22;
    }
    .video-flow-scroll {
        overflow: visible;
        padding-top: 4px;
    }
    .video-flow {
        grid-template-columns: minmax(0, 1fr) 9px minmax(0, 1fr) 9px minmax(0, 1fr) 9px minmax(0, 1fr) 9px minmax(0, 1.05fr);
        column-gap: 3px;
        width: 100%;
        min-width: 0;
    }
    .flow-number {
        top: -6px;
        left: -5px;
        width: 18px;
        height: 18px;
        font-size: 10px;
        box-shadow: 0 0 10px rgba(242, 27, 190, .55);
    }
    .flow-visual {
        height: clamp(66px, 19vw, 96px);
        border-width: 1px;
        border-radius: 7px;
    }
    .video-flow-step h3 {
        margin-top: 5px;
        font-size: clamp(8px, 2.35vw, 11px);
        line-height: 1.05;
    }
    .flow-arrow {
        font-size: clamp(11px, 3.1vw, 16px);
        transform: translateY(-8px);
    }
    .flow-prompt .flow-visual { padding: 4px; }
    .flow-prompt p {
        padding: 5px 4px;
        font-size: clamp(6.4px, 1.72vw, 8.5px);
        line-height: 1.28;
    }
    .ai-orb {
        width: clamp(32px, 10vw, 45px);
        height: clamp(32px, 10vw, 45px);
        border-width: 2px;
        font-size: clamp(14px, 4.5vw, 20px);
    }
    .flow-ai .flow-visual > p {
        margin: 5px 0 4px;
        font-size: clamp(6.5px, 1.9vw, 8.5px);
    }
    .ai-progress {
        width: 68%;
        height: 2px;
    }
    .video-step-play {
        width: clamp(22px, 7vw, 31px);
        height: clamp(22px, 7vw, 31px);
        border-width: 1px;
    }
    .video-step-play i {
        margin-left: 2px;
        font-size: clamp(8px, 2.6vw, 12px);
    }
    .video-mini-progress {
        right: 5px;
        bottom: 4px;
        left: 5px;
        height: 2px;
    }
    .flow-sales .flow-visual { padding: 7px 5px 5px; }
    .flow-sales small { font-size: clamp(5.8px, 1.65vw, 8px); }
    .flow-sales strong {
        margin-top: 3px;
        font-size: clamp(9px, 3vw, 14px);
        line-height: 1.05;
    }
    .sales-growth {
        margin-top: 2px;
        font-size: clamp(5.6px, 1.6vw, 7.5px);
    }
    .flow-sales svg {
        height: clamp(18px, 6vw, 28px);
        margin-top: 5px;
    }
}

#comprar { scroll-margin-top: 18px; }

.quick-buy-section {
    padding: 0 16px 44px;
    background: #f4f2f7;
}

.quick-buy-card {
    width: min(790px, 100%);
    margin: 0 auto;
    padding: 16px 42px 20px;
    border: 1px solid rgba(148, 78, 180, .16);
    border-radius: 13px;
    background: linear-gradient(180deg, #fffaff 0%, #f7eefc 100%);
    box-shadow: 0 14px 38px rgba(73, 21, 91, .12);
    text-align: center;
}

.quick-buy-price-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 4px;
}

.quick-buy-price-row p {
    margin: 0;
    color: #111;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.quick-buy-line {
    height: 2px;
    border-radius: 99px;
    background: #ef18a6;
}

.quick-buy-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.quick-buy-installments {
    color: #d70f91;
    font-size: 15px;
    font-weight: 800;
}

.quick-buy-price > strong {
    color: #f009a6;
    font-family: var(--font-cta);
    font-size: 54px;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -0.03em;
}

.quick-buy-divider {
    width: 1px;
    height: 46px;
    background: rgba(56, 21, 70, .14);
}

.quick-buy-cash {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    column-gap: 5px;
    color: #21172b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.quick-buy-cash b {
    color: #5d34d7;
    font-size: 27px;
    font-weight: 900;
}

.quick-buy-cash small {
    grid-column: 2;
    color: #21172b;
    font-size: 13px;
    font-weight: 700;
}

.quick-buy-cta {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon label"
        "icon sub";
    align-items: center;
    column-gap: 11px;
    width: min(565px, 100%);
    margin: 0 auto;
    padding: 13px 18px 10px;
    border: 1px solid #05c31a;
    border-radius: 11px;
    background: linear-gradient(180deg, #08ff23 0%, #00d10f 52%, #00b80d 100%);
    box-shadow: 0 7px 0 #00a40b, 0 15px 24px rgba(0, 201, 20, .3);
    color: #fff;
    font-family: var(--font-cta);
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .24);
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.quick-buy-cta:hover {
    filter: brightness(1.04);
    transform: translateY(-2px);
    box-shadow: 0 9px 0 #00a40b, 0 18px 28px rgba(0, 201, 20, .34);
}

.quick-buy-cta:active {
    transform: translateY(4px);
    box-shadow: 0 3px 0 #00a40b, 0 8px 16px rgba(0, 201, 20, .26);
}

.quick-buy-cta i {
    grid-area: icon;
    font-size: 20px;
}

.quick-buy-cta span {
    grid-area: label;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.05;
}

.quick-buy-cta small {
    grid-area: sub;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
    opacity: .92;
}

.quick-buy-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(760px, calc(100% - 16px));
    margin: 13px auto 0;
}

.quick-buy-trust div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    color: #2c153b;
}

.quick-buy-trust i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 31px;
    height: 31px;
    border: 2px solid #321047;
    border-radius: 50%;
    color: #321047;
    font-size: 15px;
}

.quick-buy-trust p {
    margin: 0;
    color: #1c1026;
    font-size: 10px;
    line-height: 1.12;
}

.quick-buy-trust b,
.quick-buy-trust small {
    display: block;
}

.quick-buy-trust b {
    font-size: 10px;
    font-weight: 900;
}

.quick-buy-trust small {
    margin-top: 2px;
    font-size: 8px;
    font-weight: 600;
}

@media (max-width: 620px) {
    .quick-buy-section { padding: 0 8px 34px; }
    .quick-buy-card {
        padding: 13px 12px 15px;
        border-radius: 10px;
    }
    .quick-buy-price-row {
        gap: 10px;
        margin-bottom: 5px;
    }
    .quick-buy-price-row p {
        font-size: clamp(12px, 3.5vw, 15px);
    }
    .quick-buy-price {
        gap: 7px;
        margin-bottom: 10px;
    }
    .quick-buy-installments {
        font-size: clamp(9px, 2.8vw, 12px);
    }
    .quick-buy-price > strong {
        font-size: clamp(34px, 10.5vw, 44px);
    }
    .quick-buy-divider { height: 35px; }
    .quick-buy-cash {
        column-gap: 3px;
        font-size: clamp(10px, 2.9vw, 13px);
    }
    .quick-buy-cash b {
        font-size: clamp(18px, 5.8vw, 24px);
    }
    .quick-buy-cash small {
        font-size: clamp(8px, 2.4vw, 10px);
    }
    .quick-buy-cta {
        column-gap: 8px;
        padding: 11px 10px 8px;
        border-radius: 9px;
        box-shadow: 0 5px 0 #00a40b, 0 10px 18px rgba(0, 201, 20, .26);
    }
    .quick-buy-cta i { font-size: 15px; }
    .quick-buy-cta span {
        font-size: clamp(12px, 3.2vw, 15px);
    }
    .quick-buy-cta small {
        font-size: clamp(7px, 2vw, 8.5px);
    }
    .quick-buy-trust {
        gap: 5px;
        width: 100%;
        margin-top: 10px;
    }
    .quick-buy-trust div {
        flex-direction: column;
        gap: 4px;
        justify-content: flex-start;
        text-align: center;
    }
    .quick-buy-trust i {
        width: 23px;
        height: 23px;
        border-width: 1.5px;
        font-size: 11px;
    }
    .quick-buy-trust p {
        font-size: clamp(6.5px, 1.85vw, 8px);
    }
    .quick-buy-trust b {
        font-size: clamp(6.5px, 1.85vw, 8px);
    }
    .quick-buy-trust small {
        font-size: clamp(5.5px, 1.55vw, 7px);
    }
}

/* ===== ABERTURA E ROLETA DE VÍDEOS ===== */
.reference-hero {
    width: 100%;
    padding: clamp(32px, 5vw, 64px) 18px clamp(38px, 6vw, 76px);
    background: #fff;
}

.reference-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.reference-hero-logo {
    width: clamp(105px, 12vw, 150px);
    margin-bottom: clamp(22px, 3vw, 34px);
}

.reference-hero h1 {
    max-width: 690px;
    margin: 0;
    color: #090909;
    font-size: clamp(27px, 3.2vw, 45px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -.035em;
}

.reference-hero h1 strong {
    color: #f000d1;
    font-weight: 700;
}

.reference-hero p {
    max-width: 650px;
    margin: clamp(22px, 3vw, 31px) 0 0;
    color: #090909;
    font-size: clamp(17px, 1.65vw, 23px);
    font-weight: 600;
    line-height: 1.28;
}

.reference-hero p strong { color: #f000d1; }
.reference-hero p b { color: #08b628; }

.reference-hero-image {
    width: min(520px, 88%);
    margin-top: clamp(24px, 3.5vw, 38px);
    border-radius: 10px;
}

.video-step-section {
    padding-top: clamp(26px, 4vw, 48px);
    padding-bottom: clamp(24px, 3vw, 34px);
    background: #fff;
}

.flow-video .flow-visual { position: relative; }
.flow-video .flow-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-showcase {
    padding: 0 18px clamp(30px, 5vw, 58px);
    background: #fff;
}

.video-carousel {
    position: relative;
    width: min(820px, 100%);
    aspect-ratio: 1.56 / 1;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid #109cf0;
    border-radius: 29px;
    background: #382743;
    box-shadow: 0 16px 36px rgba(48, 24, 63, .14);
    perspective: 1100px;
}

.video-carousel-track,
.video-carousel-slide {
    position: absolute;
    inset: 0;
}

.video-carousel-slide {
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    transform: rotateY(72deg) scale(.86);
    transform-origin: right center;
    transition: opacity .44s ease, transform .54s cubic-bezier(.2, .75, .25, 1), visibility .54s;
}

.video-carousel-slide.is-active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: rotateY(0) scale(1);
}

.video-carousel.is-reversing .video-carousel-slide {
    transform-origin: left center;
}

.video-carousel-slide video {
    display: block;
    width: 42%;
    max-width: none;
    height: 100%;
    border: 0;
    background: #170f1d;
    object-fit: contain;
}

.video-carousel-button {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 43px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color .2s ease, transform .2s ease;
}

.video-carousel-button:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-50%) scale(1.08);
}

.video-carousel-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.video-carousel-button.is-prev { left: 18px; }
.video-carousel-button.is-next { right: 18px; }

.video-carousel-status {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 12px;
    margin: 0;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(17, 7, 24, .65);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 620px) {
    .reference-hero {
        padding: 27px 17px 38px;
    }

    .reference-hero-logo {
        width: 92px;
        margin-bottom: 20px;
    }

    .reference-hero h1 {
        max-width: 340px;
        font-size: clamp(24px, 7.4vw, 31px);
        line-height: 1.12;
    }

    .reference-hero p {
        max-width: 330px;
        margin-top: 19px;
        font-size: clamp(14px, 4.25vw, 18px);
        line-height: 1.27;
    }

    .reference-hero-image {
        width: min(286px, 86%);
        margin-top: 23px;
        border-radius: 7px;
    }

    .video-step-section { padding: 26px 14px 32px; }
    .video-step-card { max-width: 330px; }
    .video-showcase { padding: 0 20px 34px; }

    .video-carousel {
        max-width: 330px;
        border-width: 3px;
        border-radius: 15px;
    }

    .video-carousel-slide video {
        width: 42%;
    }

    .quick-buy-card,
    .quick-buy-trust { max-width: 330px; }

    .video-carousel-button {
        width: 42px;
        height: 52px;
        font-size: 25px;
    }

    .video-carousel-button.is-prev { left: 5px; }
    .video-carousel-button.is-next { right: 5px; }
    .video-carousel-status { right: 9px; bottom: 7px; font-size: 9px; }
}

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

/* ===== REFINAMENTO VISUAL DO TRECHO INICIAL ===== */
.alteration-zone {
    --zone-purple: #8d16d2;
    --zone-purple-dark: #270632;
    --zone-pink: #ec0bb8;
    --zone-green: #08b82c;
    --zone-ink: #17121d;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.alteration-zone .reference-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(62px, 8vw, 112px) 24px clamp(64px, 8vw, 104px);
    background:
        radial-gradient(circle at 4% 16%, rgba(236, 11, 184, .08), transparent 25%),
        radial-gradient(circle at 96% 78%, rgba(141, 22, 210, .09), transparent 28%),
        #fff;
}

.alteration-zone .reference-hero::before {
    position: absolute;
    z-index: -1;
    top: 76px;
    left: -70px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(236, 11, 184, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 25px rgba(236, 11, 184, .025), 0 0 0 50px rgba(141, 22, 210, .018);
    content: "";
}

.alteration-zone .reference-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(36px, 5vw, 60px);
    width: min(900px, 100%);
    text-align: center;
}

.reference-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alteration-zone .reference-hero-logo {
    width: clamp(118px, 10vw, 148px);
    margin: 0 0 26px;
}

.reference-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    padding: 8px 13px;
    border: 1px solid rgba(141, 22, 210, .13);
    border-radius: 999px;
    background: #fbf3ff;
    color: var(--zone-purple);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.reference-eyebrow i { color: var(--zone-pink); }

.alteration-zone .reference-hero h1 {
    max-width: 850px;
    margin-top: 18px;
    color: var(--zone-ink);
    font-size: clamp(36px, 4.15vw, 58px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.052em;
}

.alteration-zone .reference-hero h1 strong {
    background: linear-gradient(105deg, #f300b9 5%, #a20cdd 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.alteration-zone .reference-hero p {
    max-width: 760px;
    margin-top: 24px;
    color: #39303f;
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 500;
    line-height: 1.52;
}

.alteration-zone .reference-hero p strong { color: var(--zone-pink); }
.alteration-zone .reference-hero p b { color: var(--zone-green); font-weight: 700; }

.reference-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 26px;
}

.reference-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4c3d52;
    font-size: 13px;
    font-weight: 700;
}

.reference-benefits i { color: var(--zone-green); }

.reference-hero-visual {
    position: relative;
    width: min(760px, 100%);
    padding: 12px;
    border: 1px solid rgba(96, 41, 120, .1);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 70px rgba(91, 30, 111, .16);
}

.reference-hero-visual::before {
    position: absolute;
    z-index: -1;
    inset: -22px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(236, 11, 184, .18), rgba(141, 22, 210, .05) 48%, rgba(8, 184, 44, .13));
    filter: blur(22px);
    content: "";
}

.alteration-zone .reference-hero-image {
    width: 100%;
    margin: 0;
    border-radius: 19px;
}

.alteration-zone .video-step-section {
    position: relative;
    padding: 0 24px clamp(44px, 6vw, 72px);
    background: linear-gradient(180deg, #fff 0, #fcf8ff 100%);
}

.alteration-zone .video-step-card {
    width: min(980px, 100%);
    padding: clamp(25px, 3vw, 36px) clamp(24px, 4vw, 46px) 28px;
    border: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% -30%, rgba(237, 22, 190, .35), transparent 48%),
        linear-gradient(145deg, #31083c 0%, #190020 68%, #27032f 100%);
    box-shadow: 0 24px 60px rgba(48, 5, 60, .22);
}

.alteration-zone .video-step-card::after {
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 27px;
    pointer-events: none;
    content: "";
}

.alteration-zone .video-flow-heading {
    max-width: 720px;
    margin-bottom: 27px;
}

.alteration-zone .video-flow-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #e998ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.alteration-zone .video-flow-heading h2 {
    font-size: clamp(20px, 2.25vw, 29px);
    line-height: 1.22;
}

.alteration-zone .video-flow {
    grid-template-columns: 124px 22px 124px 22px 124px 22px 124px 22px 136px;
    column-gap: 7px;
    min-width: 0;
}

.alteration-zone .flow-visual {
    height: 154px;
    border: 1px solid rgba(239, 53, 201, .58);
    border-radius: 13px;
    background: rgba(36, 5, 46, .84);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.14);
}

.alteration-zone .flow-number {
    top: -10px;
    left: -8px;
    width: 28px;
    height: 28px;
    border: 2px solid #3b0a46;
    font-size: 12px;
}

.alteration-zone .flow-arrow {
    color: #e998ff;
    font-size: 19px;
}

.alteration-zone .video-flow-step h3 {
    margin-top: 11px;
    font-size: 13px;
    letter-spacing: -.01em;
}

.alteration-zone .video-showcase {
    padding: clamp(58px, 7vw, 86px) 24px clamp(48px, 6vw, 76px);
    background:
        radial-gradient(circle at 50% 58%, rgba(153, 30, 205, .11), transparent 39%),
        #fcf8ff;
}

.video-showcase-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(680px, 100%);
    margin: 0 auto 30px;
    text-align: center;
}

.video-showcase-heading h2 {
    margin-top: 15px;
    color: var(--zone-ink);
    font-size: clamp(28px, 3.35vw, 43px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.video-showcase-heading p {
    margin-top: 10px;
    color: #6d6073;
    font-size: 14px;
    font-weight: 500;
}

.alteration-zone .video-carousel {
    width: min(760px, 100%);
    aspect-ratio: 1.62 / 1;
    border: 3px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(#2f2038, #25172e) padding-box,
        linear-gradient(120deg, #f20db8, #8e24dc 52%, #12c7a0) border-box;
    box-shadow: 0 28px 65px rgba(54, 15, 69, .24), 0 0 0 8px rgba(141, 22, 210, .045);
}

.alteration-zone .video-carousel::before {
    position: absolute;
    z-index: 1;
    top: 13%;
    bottom: 13%;
    left: 50%;
    width: 42%;
    border-radius: 25px;
    background: rgba(255,255,255,.025);
    box-shadow: 0 0 50px rgba(233, 65, 213, .13);
    transform: translateX(-50%);
    content: "";
}

.alteration-zone .video-carousel-slide { padding: 15px 0; }

.alteration-zone .video-carousel-slide video {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 42%;
    height: calc(100% - 30px);
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: #100b14;
    box-shadow: 0 18px 38px rgba(0,0,0,.32);
    object-fit: contain;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
}

.video-resume-button {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 11, 184, .94), rgba(141, 22, 210, .94));
    box-shadow: 0 12px 30px rgba(47, 3, 57, .42), 0 0 28px rgba(236, 11, 184, .32);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.video-resume-button i { margin-left: 4px; }

.video-resume-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-resume-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.video-carousel-slide.is-playing .video-resume-button {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.alteration-zone .video-carousel-button {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.09);
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    font-size: 23px;
    backdrop-filter: blur(8px);
}

.alteration-zone .video-carousel-button:hover { background: rgba(255,255,255,.17); }
.alteration-zone .video-carousel-button.is-prev { left: 28px; }
.alteration-zone .video-carousel-button.is-next { right: 28px; }

.alteration-zone .video-carousel-status {
    right: 20px;
    bottom: 16px;
    padding: 6px 11px;
    background: rgba(15, 7, 19, .72);
    font-size: 11px;
    letter-spacing: .04em;
}

.alteration-zone .quick-buy-section {
    padding: 12px 24px clamp(72px, 9vw, 108px);
    background: #fcf8ff;
}

.alteration-zone .quick-buy-card {
    width: min(720px, 100%);
    padding: 20px 34px 24px;
    border: 1px solid rgba(143, 36, 190, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 52px rgba(76, 25, 94, .13);
}

.alteration-zone .quick-buy-cta { border-radius: 12px; }
.alteration-zone .quick-buy-trust { margin-top: 18px; }

@media (max-width: 900px) {
    .alteration-zone .reference-hero-content {
        gap: 36px;
    }

    .alteration-zone .reference-hero h1 { font-size: clamp(34px, 5vw, 45px); }

    .alteration-zone .video-flow-scroll {
        overflow-x: auto;
        padding: 8px 3px 10px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .alteration-zone .video-flow-scroll::-webkit-scrollbar { display: none; }

    .alteration-zone .video-flow {
        justify-content: start;
        width: max-content;
        min-width: 770px;
    }

    .alteration-zone .video-flow-step { scroll-snap-align: start; }
}

@media (max-width: 700px) {
    .alteration-zone .reference-hero {
        padding: 36px 20px 64px;
    }

    .alteration-zone .reference-hero-content {
        display: flex;
        gap: 42px;
        text-align: center;
    }

    .reference-hero-copy { align-items: center; }

    .alteration-zone .reference-hero-logo {
        width: 104px;
        margin-bottom: 18px;
    }

    .reference-eyebrow {
        padding: 7px 11px;
        font-size: 9px;
    }

    .alteration-zone .reference-hero h1 {
        max-width: 350px;
        margin-top: 15px;
        font-size: clamp(28px, 8vw, 35px);
        line-height: 1.08;
    }

    .alteration-zone .reference-hero p {
        max-width: 345px;
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.46;
    }

    .reference-benefits {
        justify-content: center;
        gap: 8px 13px;
        margin-top: 20px;
    }

    .reference-benefits span { font-size: 11px; }

    .reference-hero-visual {
        width: min(345px, 94%);
        padding: 8px;
        border-radius: 19px;
    }

    .alteration-zone .reference-hero-image { border-radius: 13px; }

    .alteration-zone .video-step-section { padding: 0 18px 48px; }

    .alteration-zone .video-step-card {
        max-width: 100%;
        padding: 24px 17px 17px;
        border-radius: 22px;
    }

    .alteration-zone .video-flow-heading {
        max-width: 320px;
        margin-bottom: 16px;
    }

    .alteration-zone .video-flow-heading > span { font-size: 9px; }

    .alteration-zone .video-flow-heading h2 {
        font-size: 18px;
        line-height: 1.25;
    }

    .alteration-zone .video-flow {
        grid-template-columns: 102px 17px 102px 17px 102px 17px 102px 17px 110px;
        column-gap: 5px;
        min-width: 554px;
    }

    .alteration-zone .flow-visual {
        height: 125px;
        border-radius: 11px;
    }

    .alteration-zone .video-flow-step h3 { font-size: 11px; }
    .alteration-zone .flow-arrow { font-size: 14px; }

    .alteration-zone .video-showcase { padding: 56px 18px 45px; }

    .video-showcase-heading {
        max-width: 345px;
        margin-bottom: 23px;
    }

    .video-showcase-heading h2 {
        margin-top: 13px;
        font-size: clamp(25px, 7vw, 31px);
    }

    .video-showcase-heading p { margin-top: 8px; font-size: 12px; }

    .alteration-zone .video-carousel {
        max-width: 355px;
        aspect-ratio: 1 / 1;
        border-width: 2px;
        border-radius: 21px;
    }

    .alteration-zone .video-carousel-slide { padding: 10px 0; }

    .alteration-zone .video-carousel-slide video {
        max-width: 60%;
        height: calc(100% - 20px);
        border-radius: 13px;
    }

    .video-resume-button {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .alteration-zone .video-carousel-button {
        width: 39px;
        height: 39px;
        font-size: 17px;
    }

    .alteration-zone .video-carousel-button.is-prev { left: 12px; }
    .alteration-zone .video-carousel-button.is-next { right: 12px; }

    .alteration-zone .quick-buy-section { padding: 10px 18px 70px; }

    .alteration-zone .quick-buy-card {
        max-width: 355px;
        padding: 16px 13px 19px;
        border-radius: 16px;
    }

    .alteration-zone .quick-buy-trust { max-width: 355px; }
}

/* Mantem os cinco passos visiveis de uma vez em telas pequenas. */
@media (max-width: 700px) {
    .alteration-zone .video-step-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .alteration-zone .video-step-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 9px 14px;
    }

    .alteration-zone .video-flow-heading {
        margin-bottom: 13px;
    }

    .alteration-zone .video-flow-heading h2 {
        font-size: 16px;
    }

    .alteration-zone .video-flow-scroll {
        overflow: visible;
        padding: 5px 0 0;
    }

    .alteration-zone .video-flow {
        display: flex;
        column-gap: 1px;
        width: 100%;
        min-width: 0;
    }

    .alteration-zone .video-flow-step {
        flex: 1 1 0;
        width: 0;
    }

    .alteration-zone .flow-arrow {
        flex: 0 0 6px;
    }

    .alteration-zone .flow-visual {
        height: clamp(62px, 19vw, 78px);
        border-radius: 7px;
    }

    .alteration-zone .flow-number {
        top: -6px;
        left: -4px;
        width: 18px;
        height: 18px;
        border-width: 1px;
        font-size: 9px;
    }

    .alteration-zone .flow-arrow {
        font-size: 10px;
        transform: translateY(-7px);
    }

    .alteration-zone .video-flow-step h3 {
        margin-top: 5px;
        font-size: clamp(7px, 2.25vw, 10px);
        line-height: 1.1;
    }
}

/* ============================================================
   RITMO CROMÁTICO ENTRE SEÇÕES
   Alterna branco e um banho suave da paleta rosa/roxo da marca.
   Mantido no fim do arquivo para prevalecer sobre fundos locais.
   ============================================================ */
:root {
    --section-white: #ffffff;
    --section-chroma:
        radial-gradient(circle at 8% 12%, rgba(236, 11, 184, .12), transparent 31%),
        radial-gradient(circle at 91% 82%, rgba(141, 22, 210, .13), transparent 33%),
        linear-gradient(135deg, #fff2fb 0%, #f6edff 52%, #f2f8ff 100%);
    --section-divider: rgba(141, 22, 210, .11);
}

/*
 * As cores agora seguem o assunto, não a posição do bloco.
 * Seções do mesmo tema compartilham o fundo e passam a parecer
 * partes de um único capítulo visual.
 */
.topic-section.topic-white {
    background: var(--section-white);
}

.topic-section.topic-chroma {
    background: var(--section-chroma);
}

/* Início de um novo assunto: mais respiro e um filete da marca. */
.topic-section.topic-start:not(.reference-hero) {
    border-top: 4px solid transparent;
    border-image: linear-gradient(
        90deg,
        transparent 4%,
        rgba(236, 11, 184, .72) 32%,
        rgba(141, 22, 210, .78) 68%,
        transparent 96%
    ) 1;
}

body > .topic-section.topic-start {
    padding-top: clamp(78px, 7vw, 104px);
}

/* Sem linha intermediária entre blocos que pertencem ao mesmo assunto. */
.topic-section:not(.topic-start) {
    border-top: 0;
    box-shadow: none;
}

/* Os halos acompanham a paleta sem competir com o conteúdo. */
body > .topic-section.topic-chroma::before {
    background: var(--purple);
    opacity: .11;
}

body > .topic-section.topic-chroma::after {
    background: var(--pink);
    opacity: .10;
}

body > .topic-section.topic-white::before,
body > .topic-section.topic-white::after {
    opacity: .045;
}

@media (max-width: 768px) {
    body > .topic-section.topic-start {
        padding-top: 64px;
    }

    .topic-section.topic-start:not(.reference-hero) {
        border-top-width: 3px;
    }
}
