/* ============================================
   PROTEÇÃO DE CONTEÚDO
   ============================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: 'Behind The Nineties';
    src: url('assets/fonts/Behind-The-Nineties-Md.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Azo Sans';
    src: url('assets/fonts/Rui Abreu - AzoSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Azo Sans';
    src: url('assets/fonts/Rui Abreu - AzoSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Azo Sans';
    src: url('assets/fonts/Rui Abreu - AzoSans-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a2e1f;
    color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   DOBRA 1 - HERO
   ============================================ */
.dobra-1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Background */
.dobra-1__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dobra_1/bg - fundo dobra 1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Cérebros decorativos */
.dobra-1__brain {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.dobra-1__brain--top-right {
    top: 20px;
    right: -20px;
    width: 220px;
    transform: scaleX(-1);
}

.dobra-1__brain--bottom-left {
    bottom: 380px;
    left: -30px;
    width: 200px;
}

/* Conteúdo principal */
.dobra-1__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 40px 20px 0;
}

/* Logo */
.dobra-1__logo {
    margin-bottom: 24px;
}

.dobra-1__logo img {
    width: 60px;
    height: auto;
}

/* Headline */
.dobra-1__headline {
    width: 100%;
    max-width: 750px;
    margin-bottom: 20px;
}

.dobra-1__headline img {
    width: 100%;
    height: auto;
}

/* Subtítulo */
.dobra-1__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    max-width: 620px;
    margin-bottom: 30px;
}

.dobra-1__subtitle strong {
    font-weight: 800;
}

/* CTA Button */
.dobra-1__cta {
    display: inline-block;
    background-color: #e04c16;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 24px 65px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
}

.dobra-1__cta:hover {
    transform: scale(1.05);
    background-color: #c93e0d;
    box-shadow: 0 8px 30px rgba(224, 76, 22, 0.5);
}

/* Headline Mobile */
.dobra-1__headline-mobile {
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 3;
}

.dobra-1__headline-mobile img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Layout containers - Mobile first (stacked) */
.dobra-1__left,
.dobra-1__right {
    display: contents;
}

/* BIBLIA-BRAIN: hidden on mobile, shown on desktop */
.dobra-1__biblia-brain {
    display: none;
}

/* Mobile reorder: logo(1), headline(2), subtitle(3), CTA(4) */
.dobra-1__logo {
    order: 1;
}

.dobra-1__headline-mobile {
    order: 2;
    margin-top: 5px;
    margin-bottom: 16px;
}

.dobra-1__subtitle {
    order: 3;
}

.dobra-1__cta {
    order: 4;
    margin-bottom: 40px;
}

/* Desktop layout - two columns */
@media (min-width: 993px) {
    .dobra-1 {
        min-height: auto;
        padding-bottom: 0;
    }

    .dobra-1__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        max-width: 1300px;
        padding: 80px 60px 60px;
        gap: 40px;
    }

    .dobra-1__left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 0 1 48%;
        max-width: 520px;
    }

    .dobra-1__right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 0 1 52%;
    }

    .dobra-1__logo {
        margin-bottom: 32px;
        order: unset;
    }

    .dobra-1__logo img {
        width: 160px;
    }

    .dobra-1__subtitle {
        font-size: 21px;
        line-height: 1.7;
        text-align: left;
        max-width: 480px;
        margin-bottom: 44px;
        order: unset;
    }

    .dobra-1__cta {
        font-size: 20px;
        padding: 20px 55px;
        order: unset;
        margin-bottom: 0;
    }

    .dobra-1__biblia-brain {
        display: block;
        width: 100%;
        max-width: 600px;
        height: auto;
        filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
        order: unset;
        margin-bottom: 0;
    }

    /* Hide mobile-only elements on desktop */
    .dobra-1__headline-mobile {
        display: none;
    }

    .dobra-1__brain {
        display: none;
    }

    /* Bonus cards desktop */
    .dobra-1__bonus {
        max-width: 1300px;
        padding: 40px 60px 80px;
        margin-top: 0;
        gap: 30px;
    }

    .dobra-1__bonus-card {
        max-width: 380px;
        min-height: 400px;
    }

    .dobra-1__bonus-title {
        font-size: 36px;
    }

    .dobra-1__bonus-text {
        font-size: 14px;
    }
}

/* ============================================
   DOBRA 1 - SEÇÃO DE BÔNUS
   ============================================ */
.dobra-1__bonus {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px 60px;
    margin-top: -20px;
}

.dobra-1__bonus-card {
    flex: 1;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.dobra-1__bonus-card:hover {
    transform: translateY(-5px);
}

/* Imagem como fundo do card inteiro */
.dobra-1__bonus-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dobra-1__bonus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay preto transparente com gradiente */
.dobra-1__bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.dobra-1__bonus-info {
    position: relative;
    z-index: 2;
    padding: 20px 22px 28px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
}

.dobra-1__bonus-tag {
    font-family: 'Azo Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}

.dobra-1__bonus-title {
    font-family: 'Azo Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #f5a623;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.05;
}

.dobra-1__bonus-subtitle {
    font-family: 'Azo Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dobra-1__bonus-text {
    font-family: 'Azo Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
}

/* ============================================
   DOBRA 2 - VÍDEO
   ============================================ */
.dobra-2 {
    background-color: #FFF4EA;
    padding: 80px 20px 70px;
    display: flex;
    justify-content: center;
}

.dobra-2__content {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dobra-2__text {
    font-family: 'Behind The Nineties', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.45;
    color: #1a3c2a;
    margin-bottom: 50px;
}

.dobra-2__video {
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    border: 2px solid #1a3c2a;
    overflow: hidden;
    margin-bottom: 50px;
}

.dobra-2__video iframe,
.dobra-2__video video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

/* Thumbnail + Play */
.dobra-2__video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.dobra-2__video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dobra-2__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.dobra-2__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.dobra-2__play-btn svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.dobra-2__cta {
    display: inline-block;
    background-color: #1a3c2a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1px;
    padding: 20px 55px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.dobra-2__cta:hover {
    transform: scale(1.05);
    background-color: #0f2a1c;
    box-shadow: 0 8px 25px rgba(26, 60, 42, 0.35);
}

/* ============================================
   DOBRA 5 - MÉTODO INDUTIVO
   ============================================ */
.dobra-5 {
    background-color: #fef7ed;
    padding: 60px 0 0;
    overflow: hidden;
}

.dobra-5__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 0 40px;
    position: relative;
}

.dobra-5__left {
    flex: 0 0 45%;
    min-width: 0;
    padding-top: 20px;
    padding-bottom: 60px;
}

.dobra-5__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-size: 86px;
    font-weight: 700;
    line-height: 1.0;
    color: #e04c16;
    margin: 0 0 36px 0;
}

.dobra-5__title span {
    color: #e04c16;
}

.dobra-5__br-desktop {
    display: inline;
}

.dobra-5__text {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #003b2f;
    max-width: 480px;
}

.dobra-5__text p {
    margin: 0 0 18px 0;
}

.dobra-5__text strong {
    font-weight: 700;
    color: #003b2f;
}

.dobra-5__right {
    flex: 0 0 60%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    margin-right: -120px;
}

.dobra-5__right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #fef7ed);
    pointer-events: none;
    z-index: 1;
}

.dobra-5__path-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.15) translateY(-90px);
    transform-origin: top center;
}


/* ============================================
   DOBRA 6 - DEPOIMENTOS
   ============================================ */
.dobra-6 {
    background-color: #fef7ed;
    padding: 70px 20px 60px;
    border-top: none;
    margin-top: -1px;
}

.dobra-6__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.dobra-6__left {
    flex: 0 0 320px;
}

.dobra-6__overtitle {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 10px;
}

.dobra-6__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: #1a3c2a;
}

.dobra-6__right {
    flex: 1;
    display: flex;
    gap: 25px;
}

.dobra-6__depoimento {
    flex: 1;
    background-color: #1a3c2a;
    border-radius: 16px;
    padding: 30px 28px;
}

.dobra-6__depoimento-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 18px;
}

.dobra-6__depoimento-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.dobra-6__cta-wrap {
    text-align: center;
    margin-top: 50px;
}

.dobra-6__cta {
    display: inline-block;
    background-color: #f5a623;
    color: #1a3c2a;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dobra-6__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ============================================
   DOBRA 4 - JORNADA
   ============================================ */
.dobra-4 {
    position: relative;
    padding: 80px 20px 80px;
    background-image: url('assets/dobra_4/Captura de tela 2026-03-14 021900.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dobra-4__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.dobra-4__left {
    flex: 0 1 420px;
}

.dobra-4__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-size: 38px;
    line-height: 1.2;
    color: #e04c16;
    margin-bottom: 30px;
}

.dobra-4__title-light {
    font-weight: 400;
    font-style: italic;
}

.dobra-4__title strong {
    font-weight: 900;
    color: #e04c16;
}

.dobra-4__text {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

.dobra-4__text strong {
    font-weight: 700;
    color: #ffffff;
}

.dobra-4__divider {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    align-self: stretch;
    flex-shrink: 0;
}

.dobra-4__right {
    flex: 1;
}

.dobra-4__timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dobra-4__modulo h3 {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 10px;
}

.dobra-4__leia-mais {
    display: inline-block;
    background-color: #f5a623;
    color: #1a3c2a;
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
}

.dobra-4__leia-mais:hover {
    background-color: #e0950e;
    transform: scale(1.05);
}

/* Conteúdo expandível do módulo */
.dobra-4__conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.dobra-4__modulo.is-open .dobra-4__conteudo {
    opacity: 1;
    margin-bottom: 10px;
}

.dobra-4__modulo.is-open .dobra-4__leia-mais {
    background-color: #e04c16;
    color: #ffffff;
}

.dobra-4__aula {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dobra-4__aula:last-child {
    border-bottom: none;
}

.dobra-4__aula-titulo {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.dobra-4__aula-desc {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   DOBRA 3 - 24 AULAS
   ============================================ */
.dobra-3 {
    position: relative;
    padding: 80px 20px 80px;
    overflow: hidden;
}

.dobra-3__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dobra_3/bg - fundo dobra 3.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.dobra-3__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.dobra-3__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 50px;
}

.dobra-3__title strong {
    font-weight: 900;
}

.dobra-3__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dobra-3__card {
    background-color: #1a3c2a;
    border: 2px solid #4a8c3f;
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.dobra-3__card h3 {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.35;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dobra-3__card p {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

/* ============================================
   DOBRA 7 - BÔNUS EXCLUSIVOS
   ============================================ */
.dobra-7 {
    position: relative;
    padding: 70px 20px 80px;
    overflow: hidden;
}

.dobra-7__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dobra_7/fundo-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.dobra-7__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* Topo - imagem dos cupons */
.dobra-7__topo {
    margin-bottom: 30px;
    text-align: center;
}

.dobra-7__topo-img {
    width: 460px;
    max-width: 90%;
    display: inline-block;
}

/* Título */
.dobra-7__title {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 38px;
    line-height: 1.2;
    color: #1a3c2a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.dobra-7__title em {
    font-style: italic;
    font-weight: 400;
}

.dobra-7__title strong {
    display: block;
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 42px;
}

/* Lista de itens */
.dobra-7__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dobra-7__item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-height: 0;
}

.dobra-7__item-img {
    flex: 0 0 160px;
    width: 160px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.dobra-7__item-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Card info area (shared) */
.dobra-7__item-info {
    flex: 1;
    min-width: 0;
    padding: 18px 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dobra-7__item-info h3 {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    line-height: 1.25;
}

.dobra-7__item-info p {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.5;
}

/* Orange card variant */
.dobra-7__item--orange {
    background-color: #e25d0f;
}

.dobra-7__item--orange .dobra-7__item-img {
    background-color: #e25d0f;
}

.dobra-7__item--orange .dobra-7__item-info {
    background-color: #e25d0f;
}

.dobra-7__item--orange .dobra-7__item-info h3 {
    color: #ffffff;
}

.dobra-7__item--orange .dobra-7__item-info p {
    color: #ffffff;
}

/* Green card variant */
.dobra-7__item--green {
    background-color: #003b2f;
}

.dobra-7__item--green .dobra-7__item-img {
    background-color: #003b2f;
}

.dobra-7__item--green .dobra-7__item-info {
    background-color: #003b2f;
}

.dobra-7__item--green .dobra-7__item-info h3 {
    color: #ffffff;
}

.dobra-7__item--green .dobra-7__item-info p {
    color: #ffffff;
}

/* ============================================
   DOBRA 8 - PREÇO
   ============================================ */
.dobra-8 {
    background-color: #FFF4EA;
    padding: 80px 20px 80px;
}

.dobra-8__content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.dobra-8__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: normal;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.25;
    color: #e04c16;
    margin-bottom: 40px;
}

.dobra-8__table {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dobra-8__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 2px dotted #c0c0c0;
}

.dobra-8__row:first-child {
    border-top: 2px dotted #c0c0c0;
}

.dobra-8__item {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    text-align: left;
}

.dobra-8__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    margin-left: 20px;
}

.dobra-8__price s {
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
}

.dobra-8__price strong {
    font-weight: 900;
}

.dobra-8__total {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #999999;
    text-align: center;
    margin-bottom: 20px;
}

.dobra-8__total s {
    text-decoration: line-through;
}

.dobra-8__offer-text {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
}

.dobra-8__big-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
}

.dobra-8__avista {
    font-family: 'Azo Sans', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.dobra-8__cta {
    display: inline-block;
    background-color: #1a3c2a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    padding: 22px 60px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dobra-8__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 60, 42, 0.35);
}

/* ============================================
   DOBRA 9 - PROFESSORES
   ============================================ */
.dobra-9 {
    position: relative;
    padding: 80px 20px 80px;
    overflow: hidden;
}

.dobra-9__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #060d08;
    background-image: url('assets/dobra_10/bg - faq.png');
    background-size: cover;
    background-position: center top;
    background-repeat: repeat;
    z-index: 0;
}

.dobra-9__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.dobra-9__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #f5a623;
    margin-bottom: 50px;
}

.dobra-9__title strong {
    font-weight: 900;
}

.dobra-9__title-light {
    font-weight: 400;
}

.dobra-9__grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.dobra-9__grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 740px;
    margin: 0 auto;
}

.dobra-9__card {
    background-color: #f0e8dc;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.dobra-9__card-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dobra-9__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.dobra-9__card-info {
    padding: 20px 22px 28px;
}

.dobra-9__card-info h3 {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    color: #1a3c2a;
    margin-bottom: 10px;
}

.dobra-9__card-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #444;
}

/* ============================================
   DOBRA 10 - FAQ
   ============================================ */
.dobra-10 {
    position: relative;
    padding: 80px 20px 80px;
    overflow: hidden;
}

.dobra-10__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #060d08;
    background-image: url('assets/dobra_10/bg - faq.png');
    background-size: cover;
    background-position: center top;
    background-repeat: repeat;
    z-index: 0;
}

.dobra-10__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.dobra-10__left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dobra-10__title {
    font-family: 'Behind The Nineties', Georgia, serif;
    font-style: normal;
    font-weight: 900;
    font-size: 100px;
    line-height: 1;
    color: #f5a623;
    margin-bottom: 20px;
}

.dobra-10__brain {
    width: 240px;
    height: auto;
}

.dobra-10__right {
    flex: 1;
}

.dobra-10__accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dobra-10__item {
    background-color: rgba(26, 60, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.dobra-10__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.dobra-10__question span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.dobra-10__chevron {
    width: 22px;
    height: 22px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dobra-10__item.is-open .dobra-10__chevron {
    transform: rotate(180deg);
}

.dobra-10__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.dobra-10__item.is-open .dobra-10__answer {
    max-height: 300px;
}

.dobra-10__answer p {
    padding: 0 24px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

/* ============================================
   POPUP - CHECKOUT
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-overlay.is-active {
    display: flex;
}

.popup {
    background: #FFF4EA;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a3c2a;
    transition: transform 0.2s ease;
}

.popup__close:hover {
    transform: scale(1.15);
}

.popup__close svg {
    width: 100%;
    height: 100%;
}

.popup__header {
    text-align: center;
    margin-bottom: 28px;
}

.popup__progress {
    width: 100%;
    height: 10px;
    background: #e0d5c9;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}

.popup__progress-bar {
    width: 95%;
    height: 100%;
    background: linear-gradient(90deg, #e04c16, #c93e0d);
    border-radius: 50px;
    transition: width 1s ease;
}

.popup__progress-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #e04c16;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a3c2a;
}


.popup__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup__field label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a3c2a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup__field input {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 2px solid #d4c9bc;
    border-radius: 10px;
    background: #ffffff;
    color: #1a3c2a;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup__field input::placeholder {
    color: #aaa;
}

.popup__field input:focus {
    border-color: #1a3c2a;
}

.popup__submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    background-color: #e04c16;
    border: none;
    border-radius: 50px;
    padding: 18px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.popup__submit:hover {
    transform: scale(1.03);
    background-color: #c93e0d;
    box-shadow: 0 6px 20px rgba(224, 76, 22, 0.4);
}

.popup__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.popup__secure svg {
    color: #1a3c2a;
}

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

/* Tablets */
@media (max-width: 992px) {
    .dobra-1__brain--top-right {
        width: 160px;
        top: 10px;
        right: -15px;
    }

    .dobra-1__brain--bottom-left {
        width: 150px;
        bottom: 340px;
        left: -20px;
    }

    .dobra-1__headline {
        max-width: 600px;
    }

    .dobra-1__subtitle {
        font-size: 16px;
    }

    .dobra-1__cta {
        font-size: 18px;
        padding: 16px 40px;
    }

    .dobra-1__bonus {
        gap: 20px;
    }

    .dobra-2__text {
        font-size: 24px;
    }

    .dobra-2__cta {
        font-size: 18px;
        padding: 18px 45px;
    }

    .dobra-3__title {
        font-size: 34px;
    }

    .dobra-3__grid {
        gap: 20px;
    }

    .dobra-3__card p {
        font-size: 18px;
    }

    .dobra-4__left {
        flex: 0 0 240px;
    }

    .dobra-4__title {
        font-size: 26px;
    }

    .dobra-5__content {
        gap: 0;
    }

    .dobra-5__title {
        font-size: 62px;
    }

    .dobra-5__left {
        flex: 0 0 42%;
    }

    .dobra-5__right {
        flex: 0 0 58%;
    }

    .dobra-6__left {
        flex: 0 0 260px;
    }

    .dobra-6__title {
        font-size: 28px;
    }

    .dobra-7__title {
        font-size: 34px;
    }

    .dobra-7__title strong {
        font-size: 38px;
    }

    .dobra-8__title {
        font-size: 36px;
    }

    .dobra-9__title {
        font-size: 40px;
    }

    .dobra-10__left {
        flex: 0 0 260px;
    }

    .dobra-10__title {
        font-size: 80px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dobra-1__brain--top-right {
        width: 120px;
        top: 5px;
        right: -10px;
    }

    .dobra-1__brain--bottom-left {
        width: 110px;
        bottom: auto;
        top: 55%;
        left: -15px;
    }

    .dobra-1__logo img {
        width: 70px;
    }

    .dobra-1__headline {
        max-width: 90%;
    }

    .dobra-1__subtitle {
        font-size: 15px;
        max-width: 90%;
        padding: 0 10px;
    }

    .dobra-1__cta {
        font-size: 16px;
        padding: 14px 32px;
    }

    .dobra-1__bonus {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 40px;
        margin-top: 0;
    }

    .dobra-1__bonus-card {
        max-width: 90%;
        width: 100%;
    }

    .dobra-2 {
        padding: 50px 20px 50px;
    }

    .dobra-2__text {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .dobra-2__video {
        border-radius: 18px;
        margin-bottom: 35px;
    }

    .dobra-2__cta {
        font-size: 16px;
        padding: 16px 36px;
    }

    .dobra-3 {
        padding: 50px 20px 50px;
    }

    .dobra-3__title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .dobra-3__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .dobra-3__card {
        padding: 28px 24px;
    }

    .dobra-3__card p {
        font-size: 17px;
    }

    .dobra-4 {
        padding: 50px 20px 40px;
    }

    .dobra-4__content {
        flex-direction: column;
        gap: 30px;
    }

    .dobra-4__left {
        flex: none;
        width: 100%;
    }

    .dobra-4__divider {
        display: none;
    }

    .dobra-4__title {
        font-size: 26px;
    }

    .dobra-4__modulo h3 {
        font-size: 18px;
    }

    .dobra-5 {
        padding: 50px 20px 0;
        overflow: hidden;
    }

    .dobra-5__content {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .dobra-5__left {
        text-align: center;
        flex: none;
        width: 100%;
        padding-bottom: 0;
    }

    .dobra-5__br-desktop {
        display: none;
    }

    .dobra-5__title {
        font-size: 38px;
        margin-bottom: 20px;
        white-space: nowrap;
    }

    .dobra-5__text {
        max-width: 100%;
        font-size: 15px;
        text-align: left;
    }

    .dobra-5__right {
        flex: none;
        width: 130%;
        max-width: none;
        margin-left: -15%;
        margin-right: -15%;
        margin-top: -10px;
    }

    .dobra-5__path-img {
        transform: none;
    }

    .dobra-6 {
        padding: 50px 20px 50px;
    }

    .dobra-6__content {
        flex-direction: column;
        gap: 30px;
    }

    .dobra-6__left {
        flex: none;
        width: 100%;
    }

    .dobra-6__right {
        flex-direction: column;
        gap: 16px;
    }

    .dobra-6__title {
        font-size: 26px;
    }

    .dobra-7 {
        padding: 50px 16px 60px;
    }

    .dobra-7__bg {
        background-image: url('assets/dobra_7/fundo-mobile.png');
    }

    .dobra-7__title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .dobra-7__title strong {
        font-size: 32px;
    }

    .dobra-7__topo-img {
        width: 300px;
        max-width: 80%;
    }

    .dobra-7__item {
        flex-direction: row;
    }

    .dobra-7__item-img {
        flex: 0 0 120px;
        width: 120px;
        min-width: 120px;
        padding: 8px;
    }

    .dobra-7__item-info {
        padding: 14px 16px;
    }

    .dobra-7__item-info h3 {
        font-size: 13px;
    }

    .dobra-7__item-info p {
        font-size: 12.5px;
    }

    .dobra-8 {
        padding: 50px 15px 60px;
    }

    .dobra-8__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .dobra-8__item {
        font-size: 16px;
    }

    .dobra-8__price {
        font-size: 16px;
    }

    .dobra-8__total {
        font-size: 18px;
    }

    .dobra-8__offer-text {
        font-size: 20px;
    }

    .dobra-8__big-price {
        font-size: 56px;
    }

    .dobra-8__cta {
        font-size: 18px;
        padding: 18px 40px;
    }

    .dobra-9 {
        padding: 50px 20px 50px;
    }

    .dobra-9__title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .dobra-9__grid-top {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .dobra-9__grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .dobra-10 {
        padding: 50px 20px 50px;
    }

    .dobra-10__content {
        flex-direction: column;
        gap: 30px;
    }

    .dobra-10__left {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        min-height: auto;
    }

    .dobra-10__title {
        font-size: 60px;
        margin-bottom: 0;
    }

    .dobra-10__brain {
        position: static;
        width: 120px;
    }

    .dobra-10__question span {
        font-size: 14px;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dobra-1__bonus-card:nth-child(2).animate-on-scroll {
    transition-delay: 0.15s;
}

.dobra-1__bonus-card:nth-child(3).animate-on-scroll {
    transition-delay: 0.3s;
}

/* Animação pulse no CTA */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(224, 76, 22, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(224, 76, 22, 0.25);
    }
}

.dobra-1__cta {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .dobra-1__brain--top-right {
        width: 90px;
    }

    .dobra-1__brain--bottom-left {
        width: 80px;
    }

    .dobra-1__content {
        padding-top: 25px;
    }

    .dobra-1__logo img {
        width: 50px;
    }

    .dobra-1__subtitle {
        font-size: 14px;
    }

    .dobra-1__cta {
        font-size: 14px;
        padding: 12px 28px;
    }

    .dobra-1__headline-mobile {
        max-width: 260px;
    }

    .dobra-5__title {
        font-size: 30px;
    }

    .dobra-5__text {
        font-size: 14px;
    }

    .dobra-5__right {
        width: 140%;
        margin-left: -20%;
        margin-right: -20%;
    }

    .dobra-7__topo-img {
        width: 240px;
    }

    .dobra-7__title {
        font-size: 24px;
    }

    .dobra-7__title strong {
        font-size: 28px;
    }

    .dobra-7__item-img {
        flex: 0 0 100px;
        width: 100px;
        min-width: 100px;
        padding: 8px;
    }

    .dobra-7__item-info {
        padding: 12px 14px;
    }

    .dobra-7__item-info h3 {
        font-size: 12px;
    }

    .dobra-7__item-info p {
        font-size: 11.5px;
    }
}
