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

:root {
    --red-dark: #8f1111;
    --red: #c01414;
    --red-cta: #ef4444;
    --gold: #e8b933;
    --gold-soft: #f5d97a;
    --green: #22c02c;
    --green-dark: #1aa423;
    --gray-bg: #e5e5e5;
    --gray-card: #f3f3f3;
    --text: #1f1f1f;
    --text-soft: #3d3d3d;
    --font-heading: 'Archivo', sans-serif;
    --font-round: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

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

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

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 760px;
}

.center {
    text-align: center;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    padding: 18px 56px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn--green {
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(34, 192, 44, 0.35);
}

.btn--disabled {
    background: #b5b5b5;
    color: #ffffff;
    cursor: default;
    pointer-events: none;
}

.btn--outline {
    background: #ffffff;
    color: var(--text);
    border: 2px solid #1f1f1f;
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 16px 44px;
}

.btn--block {
    display: block;
    width: 100%;
}

/* ===== BARRA TOPO ===== */
.topbar {
    background: linear-gradient(90deg, #a80f0f 0%, #d31414 50%, #a80f0f 100%);
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}

.topbar p {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ===== HERO ===== */
.hero {
    background: #ffffff url("imgs/background%20hero.png") no-repeat center right / cover;
    padding: 72px 0 0;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 64px;
}

.hero__content {
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: #fdf3d7;
    border: 1px solid #e8c96a;
    color: #8a6d1d;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Oswald', var(--font-heading), sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 26px;
}

.hero__lead {
    font-size: clamp(1.1rem, 1.9vw, 1.45rem);
    line-height: 1.4;
    color: var(--text-soft);
    margin: 0 auto 20px;
    max-width: 560px;
}

.hero__lead strong {
    color: #111111;
    font-family: var(--font-round);
}

.hero__sub {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 auto;
}

.hero__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero__img {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
}

.hero__cta {
    width: 100%;
    max-width: 380px;
}

.hero__divider {
    background: linear-gradient(90deg, #f5bd2e 0%, #eda40f 100%);
    line-height: 0;
}

.hero__divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ===== DOR ===== */
.pain {
    background: var(--gray-bg);
    padding: 24px 0 72px;
}

.pain__title {
    font-family: var(--font-round);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

.pain__title span {
    color: var(--gold);
}

.pain__text {
    max-width: 620px;
    margin: 0 auto 44px;
}

.pain__text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 30px;
}

.pain__divider {
    width: min(380px, 70%);
    height: 2px;
    background: var(--gold);
    margin: 44px auto 0;
}

/* ===== PROVA SOCIAL ===== */
.proof {
    background: #ffffff;
    padding: 72px 0;
}

.proof__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.25;
    text-align: center;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.proof__title span {
    color: var(--gold);
}

.proof__img {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 40px;
}

/* ===== PROPOSTA ===== */
.offer-intro {
    background: #ffffff;
    padding: 40px 0 72px;
    text-align: center;
}

.offer-intro__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.offer-intro__strong {
    font-size: 1rem;
    margin-bottom: 20px;
}

.offer-intro__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto 52px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
    text-align: left;
}

.card {
    background: #fcfcfc;
    border-radius: 24px;
    padding: 44px 36px 40px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    font-family: var(--font-round);
    font-weight: 800;
    font-size: 1.9rem;
    color: #111111;
    margin: 0 auto 30px;
}

.card__title {
    font-family: var(--font-round);
    font-weight: 700;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.card__focus {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
}

.card__list {
    text-align: left;
    padding-left: 20px;
}

.card__list li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.offer-intro__closing {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    line-height: 1.3;
    color: #111111;
    text-transform: uppercase;
}

/* ===== OFERTA / COUNTDOWN ===== */
.pricing {
    background: #ffffff;
    padding: 24px 0 80px;
}

.countdown {
    background: linear-gradient(135deg, #f03e3e 0%, #c50f0f 100%);
    border: 2px solid #ff7b7b;
    border-radius: 16px;
    max-width: 680px;
    margin: 0 auto 48px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    position: relative;
    animation: countdown-glow 1.6s ease-out infinite;
}

@keyframes countdown-glow {
    0% {
        box-shadow: 0 10px 30px rgba(197, 15, 15, 0.35), 0 0 0 0 rgba(240, 62, 62, 0.55);
    }
    70% {
        box-shadow: 0 10px 30px rgba(197, 15, 15, 0.35), 0 0 0 16px rgba(240, 62, 62, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(197, 15, 15, 0.35), 0 0 0 0 rgba(240, 62, 62, 0);
    }
}

.countdown__label {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    font-size: 1.45rem;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: label-pulse 1.6s ease-in-out infinite;
}

.countdown__label svg {
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.22em;
    margin-right: 10px;
}

@keyframes label-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

.countdown__timer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.countdown__digits {
    background: #1c0505;
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.45), 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    min-width: 60px;
    text-align: center;
    transition: transform 0.15s ease;
}

.countdown__digits.tick {
    transform: scale(1.12);
    color: #ffd43b;
}

.countdown__caption {
    font-size: 0.6rem;
    font-weight: 800;
    color: #ffd9d9;
    letter-spacing: 0.1em;
}

.countdown__sep {
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 2.9rem;
    animation: sep-blink 1s steps(1) infinite;
}

@keyframes sep-blink {
    50% {
        opacity: 0.25;
    }
}

/* ===== PRICING CARDS ===== */
.pricing__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
}

.price-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    background: #ffffff;
}

.price-card--later {
    margin-top: 24px;
    opacity: 0.95;
}

.price-card__header {
    text-align: center;
    padding: 18px 16px;
    color: #ffffff;
}

.price-card__header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
}

.price-card__header p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.price-card__header--dark {
    background: #4a4a4a;
}

.price-card__header--red {
    background: var(--red-cta);
}

.price-card__body {
    padding: 22px 22px 26px;
}

.price-card--later .price-card__body {
    background: #5a5a5a;
}

.price-card__included {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.price-card__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.price-card__list li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-soft);
    margin-bottom: 6px;
}


.price-box {
    border-radius: 12px;
    text-align: center;
    padding: 18px 14px;
    margin-bottom: 18px;
    font-family: var(--font-mono);
}

.price-box--gray {
    background: #6e6e6e;
    color: #9e9e9e;
}

.price-box--gray .price-box__value {
    color: #a8a8a8;
}

.price-box--green {
    background: #f4f4f4;
    color: var(--green);
    padding: 26px 16px;
}

.price-box__installments {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
}

.price-box__value {
    display: block;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--green);
}

.price-box--green .price-box__value {
    font-size: 5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 0 rgba(34, 192, 44, 0.15);
}

.price-box__value small {
    font-size: 1.6rem;
}

.price-box__cash {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

/* ===== DÚVIDAS ===== */
.doubts {
    background: #ffffff;
    padding: 12px 0 72px;
}

.doubts__question {
    font-style: italic;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 4px;
}

.doubts__cta-text {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 18px;
}

/* ===== BIO ===== */
.bio {
    background: #ffffff url("imgs/background%20hero.png") no-repeat center right / cover;
    padding: 40px 0 80px;
}

.bio__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.bio__img {
    width: 100%;
    max-width: 420px;
}

.bio__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.9rem;
    letter-spacing: 0.02em;
    color: #111111;
    margin-bottom: 24px;
}

.bio__title strong {
    font-weight: 900;
}

.bio__content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-soft);
    margin-bottom: 16px;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #111111;
    padding: 26px 0;
}

.footer p {
    font-size: 0.62rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== MODAL DE INSCRIÇÃO ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.is-open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.modal__box {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 34px 30px 30px;
    animation: modal-in 0.25s ease;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.9rem;
    line-height: 1;
    color: #888888;
    cursor: pointer;
}

.modal__close:hover {
    color: #111111;
}

.modal__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #111111;
    text-align: center;
    margin-bottom: 6px;
}

.modal__subtitle {
    font-size: 0.9rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 22px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.form-field input,
.form-field select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #f7f7f7;
    border: 2px solid #e2e2e2;
    border-radius: 10px;
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--green);
}

.form-field input.is-invalid,
.form-field select.is-invalid {
    border-color: var(--red-cta);
}

.form-error {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red-cta);
    text-align: center;
    margin-bottom: 12px;
}

#form-submit {
    margin-top: 6px;
}

#form-submit:disabled {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

body.modal-open {
    overflow: hidden;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .price-card--later {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        white-space: normal;
        font-size: clamp(1.5rem, 6.8vw, 2rem);
    }

    .topbar p {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .hero__lead,
    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .bio__grid {
        grid-template-columns: 1fr;
    }

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

    .bio__content {
        text-align: center;
    }

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