/* ==================================
   VÁRIAVEIS & RESET (TEMA DARK/RADAR)
================================== */
:root {
    --color-bg-dark: #120506;
    --color-bg-panel: rgba(31, 8, 11, 0.88);
    --color-bg-panel-strong: rgba(22, 5, 8, 0.96);
    --color-primary: #ff1f32;
    --color-primary-hover: #d10926;
    --color-primary-soft: rgba(255, 31, 50, 0.16);
    --color-success: #ff6d7e;
    --color-text-main: #ffffff;
    --color-text-dim: rgba(255, 233, 233, 0.78);
    --color-border: rgba(255, 60, 65, 0.18);
    --color-ink: #ffe7e7;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --border-radius: 10px;
    --border-radius-lg: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-code-rain {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.32;
}

.login-scanline {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.login-scanline::before {
    content: "";
    position: absolute;
    left: -12%;
    width: 124%;
    height: 120px;
    top: -140px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 31, 50, 0.02) 20%,
        rgba(255, 31, 50, 0.11) 50%,
        rgba(255, 109, 126, 0.05) 80%,
        transparent 100%
    );
    filter: blur(10px);
    animation: loginScanner 8s linear infinite;
}

/* ==================================
   FUNDO ANIMADO (RADAR GRID)
================================== */
.bg-radar {
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 48px),
        radial-gradient(circle at 20% 12%, rgba(255, 31, 50, 0.2), transparent 22%),
        radial-gradient(circle at 80% 20%, rgba(143, 7, 27, 0.2), transparent 24%),
        linear-gradient(180deg, #180406 0%, #080102 100%);
    background-size: auto, auto, auto, auto, auto;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.bg-radar::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 31, 50, 0.08), transparent 0 18%),
        radial-gradient(circle at 88% 16%, rgba(255, 31, 50, 0.06), transparent 0 20%),
        radial-gradient(circle at 52% 100%, rgba(255, 31, 50, 0.04), transparent 0 26%);
    pointer-events: none;
    z-index: -2;
}

.bg-radar::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 4px);
    pointer-events: none;
    opacity: 0.14;
    mix-blend-mode: screen;
    z-index: -1;
}

.page-orbit,
.page-grid-lines {
    position: fixed;
    pointer-events: none;
}

.page-orbit {
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 60, 65, 0.14);
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.01), 0 0 120px rgba(255, 31, 50, 0.1);
    opacity: 0.55;
}

.orbit-left {
    top: -8rem;
    left: -12rem;
}

.orbit-right {
    right: -10rem;
    bottom: -10rem;
}

.page-grid-lines {
    inset: 2rem;
    border: 1px solid rgba(255, 60, 65, 0.1);
    z-index: -1;
}

/* ==================================
   PÁGINA 1: LANDING PAGE CAPTURA
================================== */
.landing-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-shell {
    width: 100%;
    position: relative;
}

.hero-panel {
    position: relative;
    width: 100%;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 5, 8, 0.94), rgba(18, 5, 8, 0.88));
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 26px rgba(255, 31, 50, 0.12);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(135deg, rgba(255, 61, 72, 0.1), transparent 24%, transparent 76%, rgba(255, 61, 72, 0.08)),
        repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(255, 255, 255, 0.018) 18px, rgba(255, 255, 255, 0.018) 19px);
    pointer-events: none;
}

.hero-panel::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 18px;
    width: auto;
    height: auto;
    background: none;
    color: rgba(255, 196, 202, 0.34);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    content: "SECURED ACCESS";
    pointer-events: none;
}

.hero-kicker {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-kicker span {
    width: 3rem;
    height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 88, 102, 0.6), transparent);
}

.hero-section {
    text-align: center;
    margin-bottom: 2.2rem;
}

.logo-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-brand-logo {
    height: clamp(34px, 5.4vw, 56px);
    filter: drop-shadow(0 0 18px rgba(255, 31, 50, 0.18));
}

.logo-icon {
    width: 2.6rem;
    height: 2.6rem;
    filter: drop-shadow(0 0 18px rgba(255, 77, 46, 0.35));
}

.badge-free {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 214, 218, 0.82);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(255, 61, 72, 0.18);
    letter-spacing: 0.14em;
    font-family: var(--font-heading);
    box-shadow: 0 0 14px rgba(255, 31, 50, 0.08);
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(255, 77, 46, 0.24);
}

.subtitle {
    color: var(--color-text-dim);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.subtitle strong {
    color: var(--color-text-main);
    font-weight: 600;
}

.capture-section {
    width: 100%;
}

.capture-form {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 5, 8, 0.94), rgba(18, 5, 8, 0.88));
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 26px rgba(255,31,50,0.12);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.quiz-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.quiz-progress-step {
    flex: 1;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.quiz-progress-step.is-active {
    background: linear-gradient(90deg, #ff3b4f, #d10926);
    box-shadow: 0 0 12px rgba(255, 31, 50, 0.24);
}

.quiz-step {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.quiz-step.is-active {
    display: flex;
    animation: unlockStep 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-label {
    margin: 0;
    color: rgba(255, 214, 218, 0.82);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quiz-title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.15;
    color: var(--color-text-main);
}

.quiz-options {
    display: grid;
    gap: 0.8rem;
}

.quiz-option {
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 61, 72, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    color: var(--color-text-main);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quiz-option:hover,
.quiz-option.is-selected {
    transform: translateY(-1px);
    border-color: rgba(255, 86, 103, 0.34);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24), 0 0 16px rgba(255,31,50,0.08);
    background: linear-gradient(180deg, rgba(255, 61, 72, 0.1), rgba(255,255,255,0.03));
}

.quiz-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.quiz-actions .cta-button,
.quiz-next {
    flex: 1;
}

.quiz-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 61, 72, 0.2);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(28, 8, 12, 0.96), rgba(16, 4, 8, 0.92));
    color: rgba(255, 230, 232, 0.9);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.form-feedback {
    min-height: 20px;
    margin: 0;
    color: var(--color-success);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
}

.form-halo {
    position: absolute;
    inset: auto -4rem -7rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 211, 159, 0.2), transparent 68%);
    pointer-events: none;
}

.form-group input {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 61, 72, 0.16);
    color: var(--color-text-main);
    padding: 1.1rem 1.15rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(247, 241, 232, 0.46);
    font-size: 0.98rem;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 61, 72, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 31, 50, 0.08);
    transform: translateY(-1px);
    background: rgba(255,255,255,0.04);
}

.form-group-phone {
    position: relative;
}

.phone-field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 61, 72, 0.16);
    border-radius: 14px;
    padding: 0 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.phone-field:focus-within {
    border-color: rgba(255, 61, 72, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 31, 50, 0.08);
    transform: translateY(-1px);
    background: rgba(255,255,255,0.04);
}

.phone-flag {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.phone-code {
    color: rgba(255, 233, 233, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.phone-field input {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    padding-left: 0;
    padding-right: 0;
}

.phone-field input:focus {
    border: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
}

.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff3b4f, #d10926 52%, #8f071b 100%);
    color: #fff6f6;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
    box-shadow: 0 18px 40px rgba(185, 15, 42, 0.24), 0 0 22px rgba(255, 31, 50, 0.08);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(185, 15, 42, 0.3), 0 0 24px rgba(255, 31, 50, 0.12);
}

.cta-button:active,
.btn-control:active,
.quiz-option:active,
.quiz-back:active,
.btn-premium:active {
    transform: translateY(0) scale(0.985);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.3);
    outline-offset: 4px;
}

.secure-badge {
    text-align: center;
    color: var(--color-ink);
    font-size: 0.66rem;
    margin-top: 0.35rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-proof {
    margin-top: 1.6rem;
    color: var(--color-text-dim);
    font-weight: 500;
    text-align: center;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.highlight-green {
    color: var(--color-success);
}

/* ==================================
   PÁGINA 2: E-BOOK INTERATIVO
================================== */
.ebook-body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.ebook-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, rgba(26, 6, 9, 0.86), rgba(17, 8, 2, 0.72));
    border-bottom: 1px solid rgba(255, 60, 65, 0.28);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 2;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    line-height: 1.2;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nav-brand-logo {
    height: clamp(28px, 3.8vw, 42px);
    filter: drop-shadow(0 0 14px rgba(255, 31, 50, 0.14));
}

.nav-user {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 61, 72, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 233, 233, 0.88);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-brand strong {
    letter-spacing: 0.18em;
}

.nav-brand small {
    letter-spacing: 0.14em;
}
.text-primary {
    color: var(--color-primary);
    text-shadow: 0 0 14px rgba(255, 31, 50, 0.12);
}

.btn-premium {
    background: linear-gradient(180deg, rgba(28, 8, 12, 0.96), rgba(16, 4, 8, 0.92));
    border: 1px solid rgba(255, 61, 72, 0.2);
    color: var(--color-text-main);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn-premium:hover {
    border-color: rgba(255, 86, 103, 0.34);
    color: var(--color-ink);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24), 0 0 16px rgba(255,31,50,0.08);
}


.slides-wrapper {
    flex: 1;
    position: relative;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Evita o bug de cortar o topo no flexbox */
}

.slides-stage {
    width: 100%;
    max-width: 980px;
    position: relative;
}

.slides-stage::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.25rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.slide {
    width: 100%;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0; /* Centraliza verticalmente apenas se houver espaço extra */
    padding-left: 3rem;
}

.slide.active {
    animation: slideReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.hidden {
    display: none;
}

.slide-card {
    position: relative;
    width: 100%;
    max-width: 860px;
    padding: 2.2rem 2rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(25, 7, 11, 0.96), rgba(13, 4, 7, 0.94));
    border: 1px solid rgba(255, 80, 104, 0.14);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 26px rgba(255, 31, 50, 0.12);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.slide.active .slide-card {
    box-shadow:
        0 26px 86px rgba(0, 0, 0, 0.46),
        0 0 34px rgba(255, 31, 50, 0.14);
}

.slide-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(135deg, rgba(255, 61, 72, 0.08), transparent 28%, transparent 72%, rgba(255, 61, 72, 0.05)),
        repeating-linear-gradient(90deg, transparent 0, transparent 13px, rgba(255, 255, 255, 0.02) 13px, rgba(255, 255, 255, 0.02) 14px);
    pointer-events: none;
}

.slide-card::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 46, 0.18), transparent 68%);
    pointer-events: none;
}

.slide.active .slide-card::after {
    animation: slideGlowPulse 2.2s ease-in-out infinite;
}

.slide-card-hero::after {
    width: 14rem;
    height: 14rem;
}

.slide-card-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 31, 50, 0.14), transparent 24%),
        radial-gradient(circle at 18% 18%, rgba(255, 109, 126, 0.06), transparent 20%),
        linear-gradient(180deg, rgba(27, 7, 12, 0.98), rgba(12, 4, 7, 0.95));
}

.slide-card-hero::before {
    background:
        linear-gradient(135deg, rgba(255, 61, 72, 0.1), transparent 24%, transparent 76%, rgba(255, 61, 72, 0.08)),
        repeating-linear-gradient(90deg, transparent 0, transparent 13px, rgba(255, 255, 255, 0.022) 13px, rgba(255, 255, 255, 0.022) 14px);
}

.hero-cover-simple {
    position: relative;
    z-index: 1;
    margin-bottom: 1.6rem;
}

.hero-cover-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.5vw, 2.45rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff8f8;
    text-transform: uppercase;
    max-width: 18ch;
    margin-bottom: 0.7rem;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.hero-cover-note {
    color: rgba(255, 233, 233, 0.76);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 38rem;
    margin-bottom: 0;
}

.slide-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), rgba(255, 109, 126, 0.42));
    box-shadow: 0 0 22px rgba(255, 31, 50, 0.24);
}

.slide-card::selection {
    background: rgba(255, 31, 50, 0.28);
}

.slide.active .slide-card::before {
    animation: cardScanner 5.8s linear infinite;
}

.slide-header-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.slide-header-inline-spaced {
    margin-bottom: 1.5rem;
}

.slide-header-inline-tight {
    margin-bottom: 1.2rem;
}

.slide-kicker-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.slide-kicker-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.slide-kicker-text {
    color: var(--color-success);
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.section-heading {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--color-text-main);
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subheading {
    color: var(--color-success);
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(255, 109, 126, 0.08);
}

.body-text {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.body-text-strong {
    color: var(--color-primary);
    font-weight: 600;
}

.clean-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.clean-list li {
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.clean-list li:last-child {
    margin-bottom: 0;
}

.clean-list-marker {
    color: var(--color-primary);
    position: absolute;
    left: -1.2rem;
    font-size: 0.6rem;
    top: 0.35rem;
}

.panel-note {
    border-left: 3px solid var(--color-primary);
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 0 8px 8px 0;
}

.panel-note-quote {
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.metric-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.metric-badge--warn {
    border: 1px solid #d35400;
    color: #e67e22;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 16px rgba(211, 84, 0, 0.08);
}

.metric-badge--success {
    border: 1px solid var(--color-success);
    color: var(--color-success);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 16px rgba(255, 109, 126, 0.08);
}

.step-stack,
.tip-stack {
    display: flex;
    flex-direction: column;
}

.step-stack {
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.tip-stack {
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 77, 46, 0.03);
    border: 1px solid rgba(255, 77, 46, 0.15);
    border-radius: 8px;
}

.step-number {
    background: var(--color-primary);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.tip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(56, 211, 159, 0.04);
    border: 1px solid rgba(56, 211, 159, 0.15);
    border-left: 3px solid var(--color-success);
    border-radius: 0 8px 8px 0;
}

.tip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--color-success);
}

.tip-text {
    color: var(--color-text-main);
    font-size: 0.9rem;
}

.warning-panel {
    text-align: center;
    border: 1px solid rgba(255, 77, 46, 0.3);
    background: rgba(255, 77, 46, 0.04);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    font-family: monospace;
    letter-spacing: 0.05em;
}

.divider-sigil {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
    gap: 1rem;
    opacity: 0.5;
}

.divider-sigil hr {
    flex-grow: 1;
    max-width: 120px;
    border: none;
    border-top: 1px solid rgba(255, 77, 46, 0.3);
    margin: 0;
}

.divider-sigil span {
    color: var(--color-primary);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.testimonials-panel {
    margin-top: 2.4rem;
    margin-bottom: 2.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 80, 104, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.testimonials-header {
    margin-bottom: 1rem;
}

.testimonials-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.55rem;
    color: rgba(255, 214, 218, 0.72);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 420px;
    margin: 0 auto;
}

.testimonial-shot {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 80, 104, 0.12);
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    padding: 0.35rem;
}

.testimonial-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 214, 218, 0.82);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 72, 0.18);
    font-size: 0.72rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.22em;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    text-align: left;
    line-height: 1.04;
    margin-bottom: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.slide.active .slide-title,
.slide.active .section-heading,
.slide.active .section-subheading,
.slide.active .badge,
.slide.active .slide-personal,
.slide.active .slide-desc,
.slide.active .hero-cover-note {
    animation: textRevealSoft 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.slide.active .section-heading {
    animation-delay: 0.06s;
}

.slide.active .section-subheading,
.slide.active .slide-desc,
.slide.active .hero-cover-note {
    animation-delay: 0.12s;
}

.slide-title-brand {
    font-size: clamp(2.3rem, 5vw, 4rem);
    white-space: nowrap;
}

.slide-brand-logo {
    height: clamp(40px, 6vw, 68px);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 18px rgba(255, 31, 50, 0.16));
}

.slide-desc {
    text-align: left;
    color: var(--color-text-dim);
    font-size: 1rem;
    margin-bottom: 1.6rem;
    max-width: 44rem;
    line-height: 1.65;
}

.slide-personal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 109, 126, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 233, 233, 0.86);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slide-personal-compact {
    margin-bottom: 0.95rem;
}

.highlight-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border-left: 4px solid var(--color-primary);
    padding: 1.4rem 1.4rem 1.4rem 1.6rem;
    border-radius: 0 18px 18px 0;
    text-align: left;
    font-style: normal;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.slide-note {
    color: var(--color-text-dim);
    text-align: left;
    margin-top: 0.9rem;
    max-width: 46rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

.slide-note-success {
    color: var(--color-success);
    text-shadow: 0 0 14px rgba(255, 109, 126, 0.1);
}

.slide-note-alert {
    color: var(--color-primary);
    text-shadow: 0 0 14px rgba(255, 31, 50, 0.1);
}

/* Stats Grid for Slide 1 */
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0.35rem;
}

.stats-grid::before {
    content: "";
    position: absolute;
    inset: 50% 1.2rem auto 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 109, 126, 0.18), transparent);
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.9;
}

.slide.active .stats-grid .stat-card {
    animation: statCardReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.slide.active .stats-grid .stat-card:nth-child(1) {
    animation-delay: 0.08s;
}

.slide.active .stats-grid .stat-card:nth-child(2) {
    animation-delay: 0.16s;
}

.slide.active .stats-grid .stat-card:nth-child(3) {
    animation-delay: 0.24s;
}

.slide.active .stats-grid .stat-card:nth-child(4) {
    animation-delay: 0.32s;
}

.stat-card {
    position: relative;
    background: linear-gradient(180deg, rgba(27, 7, 12, 0.96), rgba(15, 4, 8, 0.94));
    border: 1px solid rgba(255, 80, 104, 0.14);
    padding: 1.35rem 1.15rem 1.2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 9.4rem;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 1;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 38%);
    opacity: 0.6;
    pointer-events: none;
}

.stat-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 109, 126, 0.24);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 46, 0.24);
    background: linear-gradient(145deg, rgba(255, 77, 46, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: 0 14px 28px rgba(0,0,0,0.22), 0 0 18px rgba(255, 31, 50, 0.08);
}

.stat-icon {
    font-size: 1.28rem;
    margin-bottom: 0.1rem;
}
.stat-card strong {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: 0.03em;
}
.stat-card small {
    color: var(--color-text-dim);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1.35;
}

.stat-card-primary::after {
    background: linear-gradient(90deg, rgba(255, 31, 50, 0.3), rgba(255, 31, 50, 0.9));
}

.stat-card-success::after {
    background: linear-gradient(90deg, rgba(255, 109, 126, 0.3), rgba(255, 109, 126, 0.95));
}

.stat-card-shield::after {
    background: linear-gradient(90deg, rgba(255, 198, 210, 0.22), rgba(255, 245, 245, 0.9));
}

.stat-card-elite::after {
    background: linear-gradient(90deg, rgba(255, 184, 77, 0.35), rgba(255, 213, 122, 0.95));
}

.slide-footer-text {
    margin-top: 1.7rem;
    color: var(--color-ink);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-align: left;
}

.btn-slide-main {
    padding: 1.2rem 3rem;
    margin-top: 0.4rem;
    justify-content: flex-start;
}

.slide-card-hero .btn-slide-main {
    min-width: min(100%, 26rem);
    justify-content: center;
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 38px rgba(255, 31, 50, 0.2);
}

.chart-frame {
    position: relative;
    border: 1px solid rgba(255, 77, 46, 0.15);
    border-radius: 18px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
        rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
}

.chart-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 61, 72, 0.06), transparent 30%, transparent 70%, rgba(255, 61, 72, 0.04));
    pointer-events: none;
}

.chart-frame-bars {
    padding: 2.5rem 2rem 1.5rem 3rem;
}

.chart-frame-radar {
    padding: 2.5rem 2rem;
}

.chart-frame-line {
    padding: 2.5rem 1.5rem;
}

.metric-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card-grid-compact {
    gap: 0.9rem;
}

.metric-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    text-align: center;
}

.metric-mini-card-danger {
    border-color: rgba(233, 30, 70, 0.32);
    background: rgba(233, 30, 70, 0.05);
}

.metric-mini-card-success {
    border-color: rgba(56, 211, 159, 0.28);
    background: rgba(56, 211, 159, 0.05);
}

.metric-mini-card-warning {
    border-color: rgba(243, 156, 18, 0.3);
    background: rgba(243, 156, 18, 0.05);
}

.metric-mini-card-compact {
    padding: 1.1rem;
}

.slide-card-calculator {
    background:
        radial-gradient(circle at top right, rgba(255, 31, 50, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(25, 7, 11, 0.98), rgba(11, 4, 7, 0.95));
}

.simulator-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.95rem;
    color: rgba(255, 214, 218, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.simulator-kicker-line {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(255, 109, 126, 0.2));
}

/* ==================================
   CALCULADORA DE BANCA
================================== */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    background: linear-gradient(180deg, rgba(18, 5, 8, 0.92), rgba(9, 2, 4, 0.94));
    border: 1px solid rgba(255, 61, 72, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    margin-bottom: 2rem;
}

.panel-title {
    margin-bottom: 1.4rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.calc-panel label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calc-panel .form-group {
    margin-bottom: 1.5rem;
}

.calc-panel input[type="number"] {
    width: 100%;
    background: rgba(4, 6, 11, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.calc-panel input[type="range"] {
    width: 100%;
    accent-color: var(--color-primary);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--color-text-dim);
    font-size: 0.75rem;
}

.projecoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proj-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.proj-box.destaque {
    border-color: var(--color-primary);
    box-shadow: inset 0 0 20px rgba(255, 77, 46, 0.08), 0 0 24px rgba(255, 31, 50, 0.08);
}

.proj-box h3 { margin-bottom: 1rem; }
.proj-box p {
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
}
.text-success { color: var(--color-success); }


.proj-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.proj-row span { color: var(--color-text-dim); }
hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 1rem 0;
}

.btn-comunidade {
    background: var(--color-success);
    color: white;
    padding: 1.2rem 3rem;
    box-shadow: 0 14px 28px rgba(56, 211, 159, 0.22);
}
.btn-comunidade:hover {
    background: #148f77;
    box-shadow: 0 18px 30px rgba(56, 211, 159, 0.3);
}

/* ==================================
   CONTROLES DO SLIDER (RODAPÉ)
================================== */
.slide-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(26, 6, 9, 0.86), rgba(17, 8, 2, 0.82));
    border-top: 1px solid rgba(255, 60, 65, 0.28);
    backdrop-filter: blur(16px);
}

.btn-control {
    background: linear-gradient(180deg, rgba(28, 8, 12, 0.96), rgba(16, 4, 8, 0.92));
    border: 1px solid rgba(255, 61, 72, 0.2);
    color: var(--color-text-main);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.primary-control {
    background: linear-gradient(135deg, #ff3b4f, #d10926 52%, #8f071b 100%);
    color: #fff6f6;
    border: none;
}
.primary-control:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff495c, #d10926 52%, #8f071b 100%);
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 250px;
    margin: 0 auto;
}

.progress-info {
    font-family: var(--font-body);
    color: var(--color-ink);
    font-size: 0.84rem;
    letter-spacing: 0.14em;
}

.progress-info.is-pulsing {
    animation: counterPulse 0.45s ease;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-130%);
    animation: progressSweep 2.8s linear infinite;
}

.progress-fill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent);
    opacity: 0.45;
}

/* Animações */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes loginScanner {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(100vh + 240px)); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes unlockStep {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
        filter: saturate(0.86);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: saturate(1);
    }
}

@keyframes slideReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
        filter: saturate(0.88);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: saturate(1);
    }
}

@keyframes slideGlowPulse {
    0%, 100% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes statCardReveal {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardScanner {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(140%);
        opacity: 0;
    }
}

@keyframes progressSweep {
    0%, 20% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(130%);
    }
}

@keyframes counterPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.75;
    }
    60% {
        transform: scale(1.04);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes textRevealSoft {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 2rem 1rem;
    }
    .hero-panel {
        padding: 1.25rem;
        border-radius: 24px;
    }
    .hero-kicker {
        justify-content: center;
        margin-bottom: 1.25rem;
    }
    .logo-area {
        flex-direction: column;
        gap: 0.7rem;
    }
    .hero-brand-logo {
        height: clamp(30px, 10vw, 44px);
    }
    .main-title {
        font-size: clamp(1.4rem, 6.8vw, 2rem);
        max-width: 15ch;
    }
    .subtitle {
        font-size: 0.82rem;
        letter-spacing: 0.08em;
    }
    .capture-form {
        padding: 1.4rem;
        border-radius: 22px;
    }
    .quiz-actions {
        flex-direction: column;
    }
    .quiz-back,
    .quiz-actions .cta-button,
    .quiz-next {
        width: 100%;
    }
    .form-group input {
        font-size: 0.88rem;
    }
    .form-group input::placeholder {
        font-size: 0.92rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    .stats-grid::before {
        display: none;
    }
    .stat-card {
        min-height: 8.4rem;
        padding: 1.1rem 0.9rem 1rem;
    }
    .hero-cover-title {
        max-width: 16ch;
        font-size: clamp(1.48rem, 6vw, 2rem);
    }
    .hero-cover-note {
        font-size: 0.92rem;
    }
    .metric-card-grid {
        grid-template-columns: 1fr;
    }
    .chart-frame-bars,
    .chart-frame-radar,
    .chart-frame-line {
        padding: 1.25rem 1rem 1.75rem;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        padding: 1.25rem;
    }
    .slides-stage::before {
        display: none;
    }
    .slide {
        padding-left: 0;
    }
    .slide-card {
        padding: 1.35rem;
        border-radius: 24px;
    }
    .slide-title {
        font-size: 1.85rem;
        text-align: left;
    }
    .slide-title-brand {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
    }
    .slide-brand-logo {
        height: clamp(34px, 10vw, 52px);
    }
    .slide-desc {
        font-size: 0.94rem;
        margin-bottom: 1.25rem;
    }
    .slide-personal {
        font-size: 0.66rem;
        padding: 0.4rem 0.65rem;
        margin-bottom: 0.7rem;
    }
    .slide-note {
        font-size: 0.92rem;
    }
    .ebook-navbar {
        padding: 0.6rem 1rem;
    }
    .nav-brand-logo {
        height: 26px;
    }
    .nav-actions {
        gap: 0.45rem;
    }
    .nav-user {
        min-height: 34px;
        padding: 0.45rem 0.6rem;
        font-size: 0.58rem;
    }
    .btn-premium {
        padding: 0.3rem 0.6rem;
        font-size: 0.68rem;
    }
    .slides-wrapper {
        padding: 1rem 0.5rem;
    }
    .slide-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "progress progress"
            "prev next";
        padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
        gap: 0.75rem;
        align-items: stretch;
    }
    .btn-control {
        min-height: 50px;
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.82rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    #btnPrev {
        grid-area: prev;
    }
    #btnNext {
        grid-area: next;
    }
    .progress-container {
        grid-area: progress;
        width: 100%;
        max-width: none;
        padding: 0 0.15rem;
    }
    .progress-info {
        font-size: 0.74rem;
    }
    .page-grid-lines,
    .page-orbit {
        display: none;
    }
    .login-code-rain {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.35rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        min-height: 7.8rem;
    }
    .stat-card strong {
        font-size: 1.55rem;
    }
    .stat-card small {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }
    .slide-title {
        font-size: 1.45rem;
    }
    .testimonials-panel {
        padding: 0.9rem;
    }
    .testimonial-shot {
        padding: 0.28rem;
    }
    .slide-personal {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }
    .hero-cover-title {
        font-size: clamp(1.28rem, 7vw, 1.7rem);
        max-width: 17ch;
    }
    .hero-cover-note {
        font-size: 0.9rem;
    }
    .simulator-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }
    .slide-card-hero .btn-slide-main,
    .btn-comunidade {
        padding: 0.9rem 1rem;
        font-size: 0.78rem;
    }
    .slide-title-brand {
        font-size: clamp(1.9rem, 8.5vw, 2.6rem);
        white-space: normal;
    }
    .slide-brand-logo {
        height: clamp(28px, 10vw, 40px);
    }
    .slide-card {
        padding: 1.15rem;
    }
    .main-title {
        font-size: clamp(1.2rem, 6.6vw, 1.65rem);
        max-width: 16ch;
    }
    .slide-controls {
        padding: 0.85rem 0.75rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
        gap: 0.65rem;
    }
    .btn-control {
        min-height: 54px;
        padding: 0.85rem 0.9rem;
        font-size: 0.76rem;
        letter-spacing: 0.08em;
        border-radius: 14px;
    }
    .progress-container {
        gap: 0.45rem;
    }
    .progress-info {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
    .progress-track {
        height: 7px;
    }
}

/* ==================================
   CHART CUSTOM STYLES
================================== */
.chart-label {
    position: absolute;
    bottom: -1.8rem;
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .chart-label {
        font-size: 0.55rem;
        bottom: -2.2rem;
        letter-spacing: -0.05em;
    }
}
