/* ════════════════════════════════════════════
   FoçaPM – Global Styles
   ════════════════════════════════════════════ */

:root {
    --gold: #d4a017;
    --gold-lt: #f0c040;
    --red: #d4280f;
    --red-lt: #d42535;
    --dark: #0d0d0d;
    --dark2: #141414;
    --dark3: #1a1a1a;
    --dark4: #222222;
    --mid: #2a2a2a;
    --border: #333333;
    --text: #e5e0d8;
    --muted: #888880;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Oswald", sans-serif;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

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

img {
    max-width: 100%;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 10px 24px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 30, 40, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
}
.btn-ghost:hover {
    color: var(--gold);
}
.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}
.btn-xl {
    padding: 18px 52px;
    font-size: 1.15rem;
}

/* ── Section labels ── */
.section-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.section-sub {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: 1.2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.accent {
    color: var(--gold);
    color: var(--red);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 95px;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo-icon {
    color: var(--gold);
    font-size: 1.4rem;
}
.logo-text {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
}
.logo-accent {
    color: var(--gold);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e0e0e0;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-ctas {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.nav-ctas a {
    font-size: 1rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    gap: 12px;
}
.mobile-menu a {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 0;
}
.mobile-menu.open {
    display: flex;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 35px;
    background-image: url("/website/banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.5) 100%
    );
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 24px 80px;
    animation: fadeUp 0.8s ease forwards;
}
.hero-badge {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 5px 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    font-size: 75px;
    color: #c5c5c5;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    line-height: 1.06;
}
.hero-sub {
    color: rgba(229, 224, 216, 0.75);
    font-size: 1.3rem;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-title .accent {
    /* color: var(--white); */
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    padding: 0 32px 0 0;
}
.stat-num {
    font-family: "Oswald", sans-serif;
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 700;
}
.stat-label {
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: #6e6e6e;
    margin-right: 32px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════
   FEATURES BAR
   ═══════════════════════════════════════════════════ */
.features-bar {
    background: var(--dark3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--red);
    background: rgb(176 30 40 / 10%);
    border: 1px solid rgb(176 30 40 / 40%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}
.feature-item h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.07rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.feature-item p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════ */
.benefits {
    padding: 96px 0;
    background: var(--dark2);
}
.benefits-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.benefits-text .section-title {
    margin-bottom: 28px;
}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.check-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.check-list strong {
    display: block;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.check-list p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Mockup */
.benefits-visual {
    position: relative;
}
.mockup-card {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.mockup-header {
    background: var(--mid);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red {
    background: #ff5f57;
}
.mockup-dot.yellow {
    background: #ffbd2e;
}
.mockup-dot.green {
    background: #28c840;
}
.mockup-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    margin-left: 8px;
    letter-spacing: 0.04em;
}
.mockup-body {
    padding: 24px;
}
.question-block {
    margin-bottom: 24px;
}
.question-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.question-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}
.options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: 0.2s;
}
.opt.correct {
    background: rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.4);
    color: var(--gold-lt);
}
.opt-letter {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.opt.correct .opt-letter {
    background: var(--gold);
    color: var(--dark);
}
.progress-bar-wrap {
}
.progress-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.progress-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
}
.deco-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(180, 30, 40, 0.5);
}

/* ═══════════════════════════════════════════════════
   COURSES
   ═══════════════════════════════════════════════════ */
.courses {
    padding: 96px 0;
    background: var(--dark);
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.course-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.course-card.featured {
    border-color: var(--gold);
}
.course-badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 2px;
}
.course-rank-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-rank-img.soldado {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.course-rank-img.cabo {
    background: linear-gradient(135deg, #1a1200 0%, #2a1e00 100%);
}
.course-rank-img.sargento {
    background: linear-gradient(135deg, #1a0000 0%, #2a0e0e 100%);
}
.rank-icon {
    width: 70px;
    height: 70px;
    opacity: 0.9;
}
.course-body {
    padding: 20px 24px 28px;
}
.course-tag {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    color: var(--red);
    margin-bottom: 6px;
}
.course-body h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}
.course-body p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.55;
}
.course-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.course-features li {
    font-size: 0.82rem;
    color: rgba(229, 224, 216, 0.65);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-footer strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.course-footer strong small {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 400;
    display: block;
}

.course-footer a {
    width: 100%;
    text-align: center;
}

.pagination {
    gap: 6px;
    display: flex;
    list-style: none;
    justify-content: center;
    margin-top: 15px;
}

.page-item .page-link {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e5e5e5;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Hover */
.page-item .page-link:hover {
    background-color: #d4290f;
    border-color: #d4290f;
    color: #fff;
}

/* Página ativa */
.page-item.active .page-link {
    background-color: #d4290f;
    border-color: #d4290f;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(212, 41, 15, 0.5);
}

/* Botões desabilitados */
.page-item.disabled .page-link {
    background-color: #121212;
    border-color: #1f1f1f;
    color: #555;
    cursor: not-allowed;
}

/* Botões anterior / próximo */
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: bold;
}

/* ═══════════════════════════════════════════════════
   DISCIPLINES
   ═══════════════════════════════════════════════════ */
.disciplines {
    padding: 96px 0;
    background: var(--dark2);
}
.discs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.disc-card {
    padding: 28px 24px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.disc-card:hover {
    transform: translateX(4px);
}
.disc-num {
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    color: var(--red);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}
.disc-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: 0.03em;
}
.disc-card p {
    font-size: 1rem;
    color: var(--muted);
    text-align: center;
}
.cta-simulado {
    text-align: center;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: linear-gradient(
        135deg,
        rgba(212, 160, 23, 0.06) 0%,
        rgba(176, 30, 40, 0.06) 100%
    );
}
.cta-simulado h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-simulado p {
    color: var(--muted);
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
    padding: 96px 0;
    background: var(--dark);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.testimonial-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 24px;
}
.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testimonial-card > p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════ */
.cta-final {
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(176, 30, 40, 0.15) 0%,
            rgba(212, 160, 23, 0.1) 100%
        ),
        var(--dark3);
    border-top: 1px solid var(--border);
    padding: 96px 0;
    overflow: hidden;
}
.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 80% at 80% 50%,
            rgba(212, 160, 23, 0.07) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 40% 60% at 20% 50%,
            rgba(176, 30, 40, 0.07) 0%,
            transparent 70%
        );
}
.cta-final-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}
.cta-final-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 64px;
    align-items: center;
}
.pm-badge {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    opacity: 0.85;
}
.pm-badge svg {
    width: 100%;
    height: 100%;
}
.cta-final-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 12px;
}
.cta-final-sub {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 12px 0 20px;
    max-width: 240px;
}
.social-links {
    display: flex;
    gap: 8px;
}
.social {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted);
    transition: 0.2s;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}
.social:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-col h5 {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.credits {
    display: flex;
    font-size: 0.8rem;
    color: var(--muted);
    align-items: center;
    gap: 5px;
}

.credits:hover a {
    opacity: 1;
}

.credits a {
    display: flex;
    opacity: 0.8;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs span.sep {
    margin: 0 6px;
    color: var(--muted);
}

.breadcrumbs span.current {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════
   INTERNAL PAGE
   ═══════════════════════════════════════════════════ */
.disc-hero {
    padding: 140px 0 60px;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.disc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 90% at 80% 50%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 70% at 10% 60%,
            rgba(176, 30, 40, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}
.disc-hero-inner {
    position: relative;
    z-index: 1;
}
.disc-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.disc-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.disc-hero-stat-num {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.disc-hero-stat-num span {
    color: var(--red);
}
.disc-hero-stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── Filters section ── */
.disc-filters-section {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    position: sticky;
    top: 95px;
    z-index: 100;
}
.disc-filters-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.disc-search-wrap {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    transition: border-color 0.2s;
}
.disc-search-wrap:focus-within {
    border-color: var(--gold);
}
.disc-search-wrap svg {
    color: var(--muted);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.disc-search-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.95rem;
    font-family: "Source Sans 3", sans-serif;
    width: 100%;
}
.disc-search-wrap input::placeholder {
    color: var(--muted);
}
.disc-letter-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.disc-letter-filter a {
    font-family: "Oswald", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--muted);
    transition: all 0.15s;
    letter-spacing: 0.04em;
}
.disc-letter-filter a:first-child {
    width: 45px;
}
.disc-letter-filter a:hover,
.disc-letter-filter a.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}
.disc-results-count {
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.08em;
}

/* ── Categories grid ── */
.disc-content {
    padding: 56px 0 80px;
    background: var(--dark);
}
.disc-group {
    margin-bottom: 52px;
}
.disc-group-letter {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.disc-group-letter::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}
.disc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.disc-card-new {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.22s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.disc-card-new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    transition: background 0.22s;
}
.disc-card-new:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.disc-card-new:hover::before {
    background: var(--gold);
}
.disc-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}
.disc-card-info {
    flex: 1;
    min-width: 0;
}
.disc-card-name {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.disc-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.disc-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--muted);
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.04em;
}
.disc-card-meta-item strong {
    color: var(--gold);
    font-weight: 600;
}
.disc-card-arrow {
    color: var(--muted);
    font-size: 0.9rem;
    transition:
        color 0.2s,
        transform 0.2s;
    flex-shrink: 0;
}
.disc-card-new:hover .disc-card-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* ── Empty state ── */
.disc-empty {
    text-align: center;
    padding: 80px 24px;
    display: none;
}
.disc-empty.visible {
    display: block;
}
.disc-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}
.disc-empty h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.4rem;
}
.disc-empty p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .disc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .disc-filters-section {
        position: relative;
        top: 0;
    }
}
@media (max-width: 640px) {
    .disc-cards-grid {
        grid-template-columns: 1fr;
    }
    .disc-hero-stats {
        gap: 24px;
    }
    .disc-letter-filter {
        display: none;
    }
}

/* 
    ==================================================
    CATEGORIES DETAILS PAGE
    ==================================================
*/
.disc-detail-hero {
    padding: 135px 0 56px;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.disc-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 80% at 90% 40%,
            rgba(212, 160, 23, 0.06) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 40% 60% at 5% 70%,
            rgba(176, 30, 40, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.disc-detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.disc-detail-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.disc-detail-stats-card {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.disc-stat-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.disc-stat-row-num {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.disc-stat-row-num span {
    color: var(--red);
}

.disc-stat-row-label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
}

.disc-stat-divider {
    height: 1px;
    background: var(--border);
}

/* ── Tab nav ── */
.disc-tabs {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 95px;
    z-index: 100;
}

.disc-tabs-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.disc-tab {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 28px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.disc-tab:hover {
    color: var(--white);
}

.disc-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ── Simulados list ── */
.disc-content {
    padding: 52px 0 80px;
    background: var(--dark);
}

.disc-content-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Filters sidebar */
.disc-sidebar {
    position: sticky;
    top: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.sidebar-card h4 {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

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

.simulados-relacionados-div {
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.88rem;
    color: var(--text);
    border: 1px solid transparent;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.04);
}

.filter-option.selected {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.25);
    color: var(--gold);
}

.filter-badge {
    font-family: "Oswald", sans-serif;
    font-size: 0.7rem;
    background: var(--border);
    padding: 2px 7px;
    border-radius: 10px;
    color: var(--muted);
}

.sidebar-cta-card {
    background: linear-gradient(
        135deg,
        rgba(176, 30, 40, 0.15) 0%,
        rgba(212, 160, 23, 0.1) 100%
    );
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
}

.sidebar-cta-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-cta-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Simulados grid */
.simulados-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.simulados-count {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}

.simulado-sort {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 7px 12px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    cursor: pointer;
}

.simulados-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.simulado-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: all 0.22s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.simulado-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.simulado-thumb {
    width: 140px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1200 0%, #2a1e00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.simulado-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 60%,
        rgba(26, 26, 26, 0.6)
    );
}

.simulado-info {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.simulado-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.simulado-plan-badge {
    font-family: "Oswald", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 2px;
    text-transform: uppercase;
}

.plan-free {
    background: rgba(40, 200, 100, 0.14);
    color: #4ade80;
    border: 1px solid rgba(40, 200, 100, 0.3);
}

.plan-basico {
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.plan-premium {
    background: rgba(176, 30, 40, 0.14);
    color: #f87171;
    border: 1px solid rgba(176, 30, 40, 0.3);
}

.simulado-difficulty {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.simulado-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.simulado-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.simulado-footer-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.simulado-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--muted);
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.04em;
}

.simulado-stat-item svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.simulado-action {
    margin-left: auto;
    align-self: flex-end;
}

.btn-sm {
    padding: 7px 18px;
    font-size: 0.78rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

/* Lock overlay for premium */
.simulado-lock {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 960px) {
    .disc-detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .disc-detail-stats-card {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .disc-stat-divider {
        display: none;
    }

    .disc-content-inner {
        grid-template-columns: 1fr;
    }

    .disc-sidebar {
        position: static;
        order: -1;
    }

    .disc-tabs {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    .simulado-thumb {
        width: 80px;
        font-size: 1.8rem;
    }
}

/* ── Detalhe do Simulado ── */
.sim-hero {
    padding: 135px 0 0;
    background: var(--dark3);
    position: relative;
    overflow: hidden;
}

.sim-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 90% at 85% 30%,
            rgba(212, 160, 23, 0.07) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 70% at 10% 80%,
            rgba(176, 30, 40, 0.07) 0%,
            transparent 60%
        );
    pointer-events: none;
}

.sim-hero-cover {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.sim-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 56px;
}

.sim-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}

/* Thumbnail */
.sim-cover-art {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #1a0a00 0%, #2e1800 50%, #1a0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.sim-cover-art-icon {
    font-size: 5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.sim-cover-art::before {
    content: "SIMULADO OFICIAL";
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(212, 160, 23, 0.7);
    z-index: 1;
}

.sim-cover-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

/* Info panel */
.sim-info-panel {
    position: sticky;
    top: 110px;
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sim-info-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--mid);
}

.sim-info-panel-header span {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.sim-plan-badge-lg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Oswald", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sim-plan-premium-lg {
    background: rgba(176, 30, 40, 0.18);
    color: #f87171;
    border: 1px solid rgba(176, 30, 40, 0.4);
}

.sim-plan-free-lg {
    background: rgba(40, 200, 100, 0.14);
    color: #4ade80;
    border: 1px solid rgba(40, 200, 100, 0.35);
}

.sim-plan-basico-lg {
    background: rgba(212, 160, 23, 0.14);
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.35);
}

.sim-info-panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sim-stat-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sim-stat-box-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.sim-stat-box-val {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.sim-stat-box-val span {
    color: var(--red);
}

/* CTA block */
.sim-cta-block {
    background: linear-gradient(
        135deg,
        rgba(176, 30, 40, 0.12) 0%,
        rgba(212, 160, 23, 0.08) 100%
    );
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.sim-cta-locked-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 14px;
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.05em;
}

.sim-cta-block .btn {
    width: 100%;
    text-align: center;
    display: block;
}

.sim-cta-block .btn + .btn {
    margin-top: 10px;
}

.sim-cta-free-msg {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
}

.sim-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sim-includes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--text);
}

.sim-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(40, 200, 100, 0.18);
    color: #4ade80;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

/* ── Body content ── */
.sim-content {
    padding: 56px 0 80px;
    background: var(--dark);
}

.sim-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}

/* Left side */
.sim-section {
    margin-bottom: 48px;
}

.sim-section-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.sim-desc-text {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Topics */
.sim-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sim-topic-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text);
}

.sim-topic-num {
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    min-width: 20px;
}

/* Preview questão */
.sim-question-preview {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.sim-q-header {
    background: var(--mid);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-q-tag {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.sim-q-body {
    padding: 20px;
}

.sim-q-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sim-q-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 18px;
}

.sim-q-options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-q-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.87rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    position: relative;
}

.sim-q-opt-letter {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--text);
}

.sim-q-opt.correct {
    background: rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.4);
    color: var(--gold-lt);
}

.sim-q-opt.correct .sim-q-opt-letter {
    background: var(--gold);
    color: var(--dark);
}
.gabarito {
    font-size: 0.72rem;
    margin-left: 8px;
    background: rgba(212, 160, 23, 0.2);
    padding: 1px 6px;
    border-radius: 2px;
}

.sim-q-opt.blurred {
    filter: blur(4px);
    user-select: none;
    cursor: not-allowed;
}

.sim-q-locked-overlay {
    text-align: center;
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.3);
}

.sim-q-locked-overlay a {
    color: var(--gold);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* Sidebar sticky */
.sim-sidebar-sticky {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-plan-card {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.sim-plan-card.recommend {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.04);
}

.sim-plan-card-badge {
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: "Oswald", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 2px 10px;
    border-radius: 2px;
}

.sim-plan-card-name {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.sim-plan-card-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 10px;
}

.sim-plan-card-price {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.sim-plan-card-price small {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
    font-family: "Source Sans 3", sans-serif;
}

/* Steps */
.sim-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sim-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.sim-step-info strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.sim-step-info span {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    transform: translateY(24px);
    transition: transform 0.25s;
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    background: var(--mid);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 1.1rem;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-plan-select {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-plan-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.modal-plan-opt:hover,
.modal-plan-opt.selected {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.06);
}

.modal-plan-opt-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}

.modal-plan-opt.selected .modal-plan-opt-radio {
    border-color: var(--gold);
    background: var(--gold);
}

.modal-plan-opt.selected .modal-plan-opt-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark);
}

.modal-plan-opt-info strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.modal-plan-opt-info span {
    font-size: 0.78rem;
    color: var(--muted);
}

.modal-plan-opt-price {
    margin-left: auto;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.modal-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.modal-success {
    text-align: center;
    padding: 16px 0;
    display: none;
}

.modal-success.show {
    display: block;
}

.modal-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.modal-success h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.modal-success p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.btn-assinar-acessar {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 14px;
}

.simulado-relacionado {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.15s;
}

.simulado-relacionado:hover {
    background: rgba(255, 255, 255, 0.04);
}

.simulado-relacionado span {
    font-size: 0.83rem;
    color: var(--text);
}

/* Responsive */
@media (max-width: 960px) {
    .sim-hero-grid,
    .sim-content-grid {
        grid-template-columns: 1fr;
    }

    .sim-info-panel {
        position: static;
    }

    .sim-sidebar-sticky {
        position: static;
        order: -1;
    }

    .sim-topics-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* 
    REGISTER PAGE
*/
.reg-page {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.reg-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    position: relative;
}

.reg-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 80% 20%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 10% 80%,
            rgba(176, 30, 40, 0.06) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.reg-wrap {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* ── Left panel ── */
.reg-left {
    background: linear-gradient(160deg, #1a0a00 0%, #0d0d0d 40%, #0a0a1a 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.reg-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 30% 70%,
        rgba(176, 30, 40, 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.reg-left-content {
    position: relative;
    z-index: 1;
}

.reg-left-badge {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.reg-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.reg-left h2 span {
    color: var(--red);
}

.reg-left p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 300px;
}

.reg-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reg-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reg-benefit-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.reg-benefit-text strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.reg-benefit-text span {
    font-size: 0.8rem;
    color: var(--muted);
}

.reg-left-bottom {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.reg-left-stat-row {
    display: flex;
    gap: 28px;
}

.reg-left-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reg-left-stat-num {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.reg-left-stat-num em {
    color: var(--red);
    font-style: normal;
}

.reg-left-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── Right panel (form) ── */
.reg-right {
    background: var(--dark3);
    padding: 48px 44px;
}

.reg-right h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.reg-right > p {
    font-size: 0.87rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.reg-right > p a {
    color: var(--gold);
    font-weight: 600;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.form-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input,
.form-select {
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    color: var(--text);
    font-size: 0.92rem;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: var(--muted);
}

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

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--dark4);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: -4px;
}

.form-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
}

.form-terms input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--red);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.form-terms a {
    color: var(--gold);
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

.reg-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.reg-divider::before,
.reg-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.reg-login-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.reg-login-link a {
    color: var(--gold);
    font-weight: 600;
}

/* plano cards */
.plano-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.plano-opt {
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
}

.plano-opt input[type="radio"] {
    display: none;
}

.plano-opt:has(input:checked) {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.07);
}

.plano-opt-name {
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.plano-opt-price {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.plano-opt-price small {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 400;
    display: block;
}

.plano-opt-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .reg-wrap {
        grid-template-columns: 1fr;
    }

    .reg-left {
        padding: 40px 32px;
    }

    .reg-right {
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .plano-options {
        grid-template-columns: 1fr;
    }
}

/* 
    LOGIN PAGE
*/
.login-page {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.login-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    position: relative;
}

.login-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 70% at 15% 30%,
            rgba(176, 30, 40, 0.06) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 85% 75%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.login-wrap {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 1;
}

/* ── Left panel ── */
.login-left {
    background: linear-gradient(155deg, #0d0d0d 0%, #1a0a00 50%, #0a0a1a 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 90% 70% at 50% 80%,
        rgba(176, 30, 40, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.login-left-inner {
    position: relative;
    z-index: 1;
}

.login-pm-badge {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
}

.login-left h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.login-left h2 span {
    color: var(--red);
}

.login-left p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 280px;
}

.login-left-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.login-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(176, 30, 40, 0.12);
    border: 1px solid rgba(176, 30, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.login-stat-text strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.login-stat-text span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── Right panel (form) ── */
.login-right {
    background: var(--dark3);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h1 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 0.87rem;
    color: var(--muted);
    margin-bottom: 32px;
}

.login-subtitle a {
    color: var(--gold);
    font-weight: 600;
}

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

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

.form-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input {
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 0.92rem;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: var(--muted);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-row-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.form-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--muted);
    cursor: pointer;
}

.form-remember input[type="checkbox"] {
    accent-color: var(--red);
    width: 14px;
    height: 14px;
}

.forgot-link {
    font-size: 0.83rem;
    color: var(--gold);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.login-register-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.login-register-link a {
    color: var(--gold);
    font-weight: 600;
}

.login-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 160, 23, 0.07);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 0.83rem;
    color: var(--text);
}

.login-alert-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .login-wrap {
        grid-template-columns: 1fr;
    }

    .login-left {
        padding: 40px 32px;
    }

    .login-right {
        padding: 40px 28px;
    }
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL (JS adds .revealed)
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 
    SIMULADOS PAGE
*/
.sims-hero {
    padding: 140px 0 60px;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.sims-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 80% at 80% 40%,
            rgba(212, 160, 23, 0.06) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 70% at 10% 70%,
            rgba(176, 30, 40, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.sims-hero-inner {
    position: relative;
    z-index: 1;
}

.sims-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.sims-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sims-hero-stat-num {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.sims-hero-stat-num span {
    color: var(--red);
}

.sims-hero-stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── SEARCH BAR ── */
.sims-search-bar {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 95px;
    z-index: 100;
}

.sims-search-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.sims-search-wrap {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    transition: border-color 0.2s;
}

.sims-search-wrap:focus-within {
    border-color: var(--gold);
}

.sims-search-wrap svg {
    color: var(--muted);
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.sims-search-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.95rem;
    font-family: "Source Sans 3", sans-serif;
    width: 100%;
}

.sims-search-wrap input::placeholder {
    color: var(--muted);
}

.sims-results-count {
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.08em;
}

/* ── LAYOUT ── */
.sims-content {
    padding: 48px 0 80px;
    background: var(--dark);
}

.sims-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── SIDEBAR ── */
.sims-sidebar {
    /* position: sticky; */
    top: 168px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.filter-card-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.filter-list {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text);
    border: 1px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
}

.filter-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.filter-item.active {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.25);
    color: var(--gold);
}

.filter-count {
    font-family: "Oswald", sans-serif;
    font-size: 0.68rem;
    background: var(--border);
    color: var(--muted);
    padding: 2px 7px;
    border-radius: 10px;
    flex-shrink: 0;
}

.filter-item.active .filter-count {
    background: rgba(212, 160, 23, 0.18);
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(
        135deg,
        rgba(176, 30, 40, 0.15) 0%,
        rgba(212, 160, 23, 0.1) 100%
    );
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ── MAIN ── */
.sims-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.sims-main-count {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}

.sims-sort {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 7px 12px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    cursor: pointer;
}

/* ── CARDS ── */
.sims-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sim-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: all 0.22s;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.sim-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.sim-thumb {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
}

.sim-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sim-body {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.sim-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sim-badge {
    font-family: "Oswald", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 2px;
    text-transform: uppercase;
}

.badge-free {
    background: rgba(40, 200, 100, 0.14);
    color: #4ade80;
    border: 1px solid rgba(40, 200, 100, 0.3);
}

.badge-basic {
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.badge-prem {
    background: rgba(176, 30, 40, 0.14);
    color: #f87171;
    border: 1px solid rgba(176, 30, 40, 0.3);
}

.sim-disc-tag {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sim-diff {
    margin-left: auto;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.sim-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.sim-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sim-foot {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.sim-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.74rem;
    color: var(--muted);
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.04em;
}

.sim-meta svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.sim-action {
    margin-left: auto;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.76rem;
}

/* lock icon */
.sim-lock {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* empty state */
.sims-empty {
    display: none;
    text-align: center;
    padding: 64px 24px;
}

.sims-empty.visible {
    display: block;
}

.sims-empty-icon {
    font-size: 3rem;
    opacity: 0.35;
    margin-bottom: 14px;
}

.sims-empty h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.sims-empty p {
    color: var(--muted);
    font-size: 0.9rem;
}

.contato-hero {
    padding: 148px 0 72px;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.contato-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 55% 80% at 5% 60%,
            rgba(212, 40, 15, 0.07) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 50% 60% at 90% 30%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 60%
        );
    pointer-events: none;
}
.contato-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.contato-hero-text {
}
.contato-hero-text .section-label {
    margin-bottom: 12px;
}
.contato-hero-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.contato-hero-title .accent {
    color: var(--red);
}
.contato-hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 460px;
}
/* Quick-reach pills */
.contato-hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-self: flex-end;
    padding-bottom: 4px;
}
.hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 16px;
    transition:
        border-color 0.2s,
        color 0.2s;
    text-decoration: none;
}
.hero-pill svg {
    width: 14px;
    height: 14px;
}
.hero-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.hero-pill.whatsapp:hover {
    border-color: #22c55e;
    color: #22c55e;
}

/* ── Main section ── */
.contato-main {
    padding: 72px 0 100px;
    background: var(--dark);
}
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

/* ── Form card ── */
.form-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.form-card-header {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-card-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(212, 40, 15, 0.1);
    border: 1px solid rgba(212, 40, 15, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-card-header-icon svg {
    width: 17px;
    height: 17px;
    color: var(--red);
}
.form-card-header-text h2 {
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.form-card-header-text p {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.form-card-body {
    padding: 28px;
}

/* Form rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row-1 {
    margin-bottom: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label.field-lbl {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
label.field-lbl .req {
    color: var(--red);
    margin-left: 2px;
}

.field-ctrl {
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    padding: 11px 14px;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
    width: 100%;
    appearance: none;
}
.field-ctrl::placeholder {
    color: #525250;
}
.field-ctrl:focus {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.02);
}
.field-ctrl:hover:not(:focus) {
    border-color: #484848;
}

select.field-ctrl {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--dark4);
    padding-right: 36px;
    cursor: pointer;
}
select.field-ctrl option {
    background: var(--dark3);
    color: var(--text);
}

textarea.field-ctrl {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Character count hint */
.field-hint {
    font-size: 0.72rem;
    color: #525250;
    margin-top: 3px;
    font-family: "Source Sans 3", sans-serif;
    display: flex;
    justify-content: space-between;
}

/* Submit row */
.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.form-privacy {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 260px;
}
.form-privacy a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 13px 28px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.btn-send svg {
    width: 16px;
    height: 16px;
}
.btn-send:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180, 30, 40, 0.38);
}

/* ── Sidebar: info cards ── */
.contato-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
}
.info-card.red::before {
    background: var(--red);
}
.info-card.gold::before {
    background: var(--gold);
}
.info-card.green::before {
    background: #22c55e;
}
.info-card.blue::before {
    background: #64a0ff;
}

.info-card-inner {
    padding: 20px 20px 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.info-card.red .info-card-icon {
    background: rgba(212, 40, 15, 0.1);
}
.info-card.gold .info-card-icon {
    background: rgba(212, 160, 23, 0.1);
}
.info-card.green .info-card-icon {
    background: rgba(34, 197, 94, 0.1);
}
.info-card.blue .info-card-icon {
    background: rgba(100, 160, 255, 0.1);
}

.info-card-text {
}
.info-card-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.info-card-value {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}
.info-card-sub {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}
.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
    transition: gap 0.2s;
    text-decoration: none;
}
.info-card-link:hover {
    gap: 8px;
}
.info-card-link svg {
    width: 11px;
    height: 11px;
}

/* ══════════════════════════════════════════════
         LEGAL PAGE – Styles
      ══════════════════════════════════════════════ */

/* ── Page hero ── */
.legal-hero {
    padding: 140px 0 52px;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 80% at 100% 50%,
            rgba(212, 160, 23, 0.04) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 40% 60% at 0% 70%,
            rgba(212, 40, 15, 0.04) 0%,
            transparent 60%
        );
    pointer-events: none;
}
.legal-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.legal-hero-text .section-label {
    margin-bottom: 10px;
}
.legal-hero-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 10px;
}
.legal-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.legal-meta-item {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.legal-meta-item svg {
    width: 13px;
    height: 13px;
}
.legal-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border);
}

/* Print button */
.legal-print-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-end;
}
.legal-print-btn svg {
    width: 13px;
    height: 13px;
}
.legal-print-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Main layout ── */
.legal-main {
    padding: 56px 0 100px;
    background: var(--dark);
}
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 52px;
    align-items: start;
}

/* ── Sidebar: Table of contents ── */
.legal-toc {
    position: sticky;
    top: 110px;
}
.legal-toc-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.toc-item a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 10px 6px 8px;
    border-left: 2px solid transparent;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.4;
    transition:
        border-color 0.18s,
        color 0.18s,
        background 0.18s;
    border-radius: 0 3px 3px 0;
}
.toc-item a:hover {
    color: var(--text);
    border-left-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.toc-item a.active {
    color: var(--gold);
    border-left-color: var(--gold);
    background: rgba(212, 160, 23, 0.04);
}
.toc-num {
    font-family: "Oswald", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--border);
    flex-shrink: 0;
    min-width: 18px;
}
.toc-item a.active .toc-num {
    color: var(--gold);
}

/* Read progress bar */
.toc-progress {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.toc-progress-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
}
.toc-progress-label span {
    color: var(--white);
}
.prog-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.prog-bar-fill {
    height: 100%;
    background: var(--red);
    border-radius: 2px;
    transition: width 0.2s ease;
    width: 0%;
}

/* ── Article content ── */
.legal-article {
    min-width: 0;
}

/* Intro highlight box */
.legal-intro-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 20px 22px;
    margin-bottom: 48px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}
.legal-intro-box strong {
    color: var(--text);
}
.legal-intro-box a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Sections */
.legal-section {
    margin-bottom: 52px;
    scroll-margin-top: 110px;
}
.legal-section:last-child {
    margin-bottom: 0;
}

/* Section heading */
.legal-section-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.legal-section-num {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.legal-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.pay-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 4px;
    margin-bottom: 20px;
}

.pay-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    border-radius: 1px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.2s ease;
    user-select: none;
}

.pay-tab.active {
    background: var(--dark3);
    border-color: var(--border-light);
    color: var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.pay-panel {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.pay-panel.active {
    display: flex;
}

.card-preview {
    background: linear-gradient(135deg, #1c2028 0%, #0f1115 100%);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.25rem 1.4rem;
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.card-chip {
    width: 30px;
    height: 22px;
    background: linear-gradient(135deg, var(--gold), #8a6a20);
    border-radius: 3px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-number-display {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.card-holder-display,
.card-expiry-display {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.card-holder-display label,
.card-expiry-display label {
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
    font-size: 0.6rem;
}

.pix-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.pix-header {
    text-align: center;
}

.pix-header h4 {
    font-family: "Oswald", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.pix-header p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.pix-qrcode {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pix-amount {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
}

.pix-amount small {
    font-size: 0.8rem;
    font-family: "Source Sans 3", sans-serif;
    color: var(--muted);
}

.pix-code-input {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.6rem 0.8rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.72rem;
    color: var(--muted);
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    padding: 0.6rem 0.9rem;
    background: var(--dark3);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    color: var(--gold);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pix-copy-line {
    width: 100%;
    display: flex;
    gap: 0.5rem;
}

.pix-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

#gerar-qrcode svg {
    width: 60px;
    height: 60px;
    color: var(--muted);
}

#gerar-qrcode {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    font-family: "Source Sans 3";
    font-weight: 800;
}

.pix-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.pix-step-num {
    width: 20px;
    height: 20px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Body text */
.legal-article h1 {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.legal-article h3,
.legal-article h2,
.legal-article h4,
.legal-article h5 {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.legal-article p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.82;
    margin-bottom: 16px;
}
.legal-article p:last-child {
    margin-bottom: 0;
}
.legal-article p strong {
    color: var(--white);
    font-weight: 600;
}
.legal-article p a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-article p em {
    color: var(--muted);
    font-style: italic;
}

/* Subsection heading */
.legal-sub-heading {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 24px 0 10px;
}

.plans-page {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.plans-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    position: relative;
}

.plans-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 80% 20%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 10% 80%,
            rgba(176, 30, 40, 0.06) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.plans-wrap {
    width: 100%;
    max-width: 1060px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease forwards;
}

/* ── Steps indicator ── */
.steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid var(--border);
    color: var(--muted);
    background: var(--dark2);
    transition: all 0.3s;
}

.step.done .step-circle {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.step.active .step-circle {
    background: var(--dark3);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.step-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.step.active .step-label {
    color: var(--gold);
}

.step.done .step-label {
    color: var(--red);
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.step-connector.done {
    background: var(--red);
}

/* ── Header ── */
.plans-header {
    text-align: center;
    margin-bottom: 48px;
}

.plans-badge {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.plans-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 10px;
}

.plans-header h1 span {
    color: var(--red);
}

.plans-header p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ── Cards grid ── */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.plan-card:hover {
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.plan-card.selected {
    border-color: var(--gold);
    box-shadow:
        0 0 0 2px var(--gold),
        0 16px 48px rgba(0, 0, 0, 0.4);
}

.plan-card.featured {
    border-color: var(--red);
    background: linear-gradient(160deg, #1a0a00 0%, #1a1a1a 60%);
}

.plan-card.featured:hover {
    border-color: var(--red);
    box-shadow: 0 16px 48px rgba(176, 30, 40, 0.25);
}

.plan-card.featured.selected {
    border-color: var(--gold);
    box-shadow:
        0 0 0 2px var(--gold),
        0 16px 48px rgba(176, 30, 40, 0.25);
}

.plan-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 3px 14px;
    border-radius: 0 0 4px 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

.plan-name {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.plan-card.featured .plan-name {
    color: var(--red);
}

.plan-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.plan-price-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-price-original {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.plan-price-currency {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.plan-price-value {
    font-family: "Oswald", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-card.featured .plan-price-value {
    color: var(--gold);
}

.plan-price-period {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.plan-price-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 6px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 28px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.plan-feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card.featured .plan-feature-icon {
    background: rgba(176, 30, 40, 0.15);
    color: var(--red);
}

.plan-feature.disabled {
    opacity: 0.35;
}

.plan-feature.disabled .plan-feature-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

.plan-cta {
    width: 100%;
    padding: 13px 20px;
    border-radius: 4px;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.plan-cta-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.plan-cta-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.plan-card.selected .plan-cta-outline {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.plan-cta-primary {
    background: var(--red);
    color: #fff;
}

.plan-cta-primary:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 30, 40, 0.4);
}

.plan-card.featured.selected .plan-cta-primary {
    background: var(--gold);
    color: #000;
}

/* ── Bottom note ── */
.plans-footer-note {
    text-align: center;
    margin-top: 32px;
    color: var(--muted);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.plans-footer-note span {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-connector {
        width: 40px;
    }
}

.pay-page {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.pay-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    position: relative;
}

.pay-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 80% 20%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 10% 80%,
            rgba(176, 30, 40, 0.06) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.pay-wrap {
    width: 100%;
    max-width: 960px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease forwards;
}

/* ── Steps ── */
.steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid var(--border);
    color: var(--muted);
    background: var(--dark2);
}

.step.done .step-circle {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.step.active .step-circle {
    background: var(--dark3);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.step-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.step.active .step-label {
    color: var(--gold);
}
.step.done .step-label {
    color: var(--red);
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.step-connector.done {
    background: var(--red);
}

/* ── Layout ── */
.pay-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

/* ── Left: payment form ── */
.pay-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pay-card-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
}

.pay-card-header h2 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.pay-card-header p {
    font-size: 0.84rem;
    color: var(--muted);
}

.pay-card-body {
    padding: 28px 32px 32px;
}

/* ── Method tabs ── */
.method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.method-tab {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark2);
}

.method-tab:hover {
    border-color: rgba(212, 160, 23, 0.4);
}

.method-tab.active {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.05);
    box-shadow: 0 0 0 1px var(--gold);
}

.method-tab-icon {
    width: 40px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.method-tab-icon.card-icon {
    background: linear-gradient(135deg, #1a3a6b, #2563eb);
    color: #fff;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.04em;
}

.method-tab-icon.pix-icon {
    background: #32bcad;
    color: #fff;
}

.method-tab-icon.pix-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.method-tab-text strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
}

.method-tab-text span {
    font-size: 0.75rem;
    color: var(--muted);
}

.method-tab.active .method-tab-text strong {
    color: var(--gold);
}

/* ── Form fields ── */
.pay-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input {
    background: var(--dark2);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    color: var(--text);
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--gold);
}

.form-input::placeholder {
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Card visual preview ── */
.card-preview {
    background: linear-gradient(135deg, #1a3a6b 0%, #0f1f4a 100%);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-preview::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.card-preview-chip {
    width: 28px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.card-preview-number {
    font-family: "Oswald", sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.18em;
}

.card-preview-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-preview-name {
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-preview-expiry {
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── PIX panel ── */
.pix-panel {
    display: none;
    padding: 8px 0;
}

.pix-panel.active {
    display: block;
}

.pix-qr-placeholder {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    background: var(--dark2);
    border: 1px dashed var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted);
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.pix-qr-placeholder > div {
    display: none;
}

.no-pix {
    cursor: pointer;
}

.no-pix > div {
    position: absolute;
    background-color: rgba(212, 40, 14, 0.95);
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    gap: 5px;
}

.no-pix > div svg {
    width: 30px;
    height: 30px;
}

.no-pix > div span {
    font-size: 0.8rem;
}

.pix-note {
    font-size: 0.84rem;
    color: var(--muted);
    max-width: 300px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.pix-code-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.pix-code-text {
    font-family: "Source Sans 3", monospace;
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pix-copy-btn {
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--gold);
    font-family: "Oswald", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.pix-copy-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.pix-timer {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-align: center;
}

.pix-timer strong {
    color: var(--red);
    font-size: 1rem;
}

/* ── Submit ── */
.pay-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.pay-submit:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 30, 40, 0.4);
}

.pay-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--muted);
}

.qrcode-generated {
    display: block !important;
}

/* ── Right: order summary ── */
.order-summary {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.order-summary-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
}

.order-summary-header h3 {
    font-size: 1rem;
    color: var(--white);
}

.order-summary-body {
    padding: 20px 24px;
}

.order-plan-name {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.order-plan-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.order-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--muted);
}

.order-feature::before {
    content: "✓";
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.order-total-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.order-total-value {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.order-total-period {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: right;
    margin-top: 2px;
}

.order-change-plan {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
}

.order-change-plan:hover {
    color: var(--gold);
}

/* ── Card panel show/hide ── */
.card-panel {
    display: none;
}

.card-panel.active {
    display: block;
}

@media (max-width: 768px) {
    .pay-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .method-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .step-connector {
        width: 40px;
    }
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-toc {
        position: static;
        margin-bottom: 32px;
    }
    .toc-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .toc-progress {
        display: none;
    }
}
@media (max-width: 560px) {
    .toc-list {
        grid-template-columns: 1fr;
    }
    .legal-doc-nav {
        flex-direction: column;
    }
}

/* Print styles */
@media print {
    .navbar,
    .legal-toc,
    .legal-doc-nav,
    .cta-final,
    .footer,
    .legal-print-btn {
        display: none !important;
    }
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-hero {
        padding-top: 32px;
    }
    body {
        background: #fff;
        color: #000;
    }
    .legal-section-title,
    .legal-hero-title {
        color: #000;
    }
    .legal-text {
        color: #222;
    }
}

/* Working hours card */
.hours-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}
.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}
.hours-day {
    color: var(--muted);
}
.hours-time {
    color: var(--text);
    font-weight: 600;
}
.hours-time.closed {
    color: #555550;
    font-style: italic;
}
.hours-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

/* Social card */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.18s;
}
.social-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.social-btn:hover {
    transform: translateY(-2px);
}
.social-btn.instagram:hover {
    border-color: #e1306c;
    color: #e1306c;
    background: rgba(225, 48, 108, 0.05);
}
.social-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}
.social-btn.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}
.social-btn.tiktok:hover {
    border-color: #69c9d0;
    color: #69c9d0;
    background: rgba(105, 201, 208, 0.05);
}

/* FAQ teaser */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
}
.faq-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}
.faq-question svg {
    width: 14px;
    height: 14px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item.open .faq-question svg {
    transform: rotate(45deg);
    color: var(--gold);
}
.faq-answer {
    display: none;
    font-size: 0.84rem;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    display: block;
}

/* ── CTA Strip ── */
.contato-cta-strip {
    background: var(--dark3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-strip-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 6px;
}
.cta-strip-text p {
    font-size: 0.9rem;
    color: var(--muted);
}
.cta-strip-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .contato-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .contato-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .contato-hero-pills {
        align-self: flex-start;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-send {
        width: 100%;
        justify-content: center;
    }
    .contato-sidebar {
        grid-template-columns: 1fr;
    }
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert.success {
    background: #166534;
    color: #fff;
    border: 1px solid #3e8d59;
}

.alert.error {
    background: #b91c1c;
    color: #fff;
    border: 1px solid #f87171;
}

.alert.success svg {
    color: #13e35f;
}

label.error {
    font-size: 13px;
    color: var(--gold);
}

.cta-available {
    background: linear-gradient(
        135deg,
        rgba(15, 80, 40, 0.18) 0%,
        rgba(40, 200, 100, 0.08) 100%
    );
    border: 1px solid rgba(40, 200, 100, 0.3);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.cta-available .sim-cta-locked-msg {
    color: rgba(74, 222, 128, 0.7);
}

.cta-available #inscricaoBtn {
    background-color: #41a965;
}

.recover-page {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.recover-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    position: relative;
}

.recover-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 70% at 15% 30%,
            rgba(176, 30, 40, 0.06) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 85% 75%,
            rgba(212, 160, 23, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}

.recover-wrap {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease forwards;
}

/* ── Left panel ── */
.recover-left {
    background: linear-gradient(155deg, #0d0d0d 0%, #1a0a00 50%, #0a0a1a 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.recover-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 90% 70% at 50% 80%,
        rgba(176, 30, 40, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.recover-left-inner {
    position: relative;
    z-index: 1;
}

.recover-pm-badge {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
}

.recover-left h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.recover-left h2 span {
    color: var(--red);
}

.recover-left p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 280px;
}

.recover-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.recover-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.recover-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(176, 30, 40, 0.12);
    border: 1px solid rgba(176, 30, 40, 0.35);
    color: var(--red);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.recover-step-text strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.recover-step-text span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── Right panel ── */
.recover-right {
    background: var(--dark3);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── State: initial form ── */
.recover-state {
    display: none;
    flex-direction: column;
}

.recover-state.active {
    display: flex;
}

.recover-right h1 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 4px;
}

.recover-subtitle {
    font-size: 0.87rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.recover-subtitle a {
    color: var(--gold);
    font-weight: 600;
}

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

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

.form-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input {
    background: var(--dark4);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 0.92rem;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: var(--muted);
}
.form-input:focus {
    border-color: var(--gold);
}

.form-input.error {
    border-color: var(--red);
}

.form-error-msg {
    font-size: 0.78rem;
    color: var(--red);
    display: none;
    margin-top: 2px;
}

.form-error-msg.visible {
    display: block;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

.recover-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.recover-divider::before,
.recover-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.recover-back-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.recover-back-link a {
    color: var(--gold);
    font-weight: 600;
}

/* ── State: success ── */
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 122, 58, 0.12);
    border: 2px solid rgba(26, 122, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    animation: scaleIn 0.4s ease forwards;
}

.success-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}

.success-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 8px;
}

.success-email-highlight {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.success-tips {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 28px;
    flex-direction: column;
    gap: 10px;
}

.success-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.success-tip-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.resend-row {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
}

.resend-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
}

.resend-btn:disabled {
    color: var(--muted);
    cursor: default;
}

.sim-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.sim-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.sim-modal-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transform: translateY(28px);
    transition: transform 0.25s;
}
.sim-modal-overlay.open .sim-modal-box {
    transform: translateY(0);
}
.sim-modal-head {
    background: #222;
    border-bottom: 1px solid #333;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sim-modal-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sim-modal-head-icon {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(212, 40, 15, 0.12);
    border: 1px solid rgba(212, 40, 15, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sim-modal-head-title {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.sim-modal-head-sub {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}
.sim-modal-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-size: 1.2rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
}
.sim-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.sim-modal-body {
    padding: 24px;
}
.sim-modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}
.sim-modal-stat {
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 10px;
    text-align: center;
}
.sim-modal-stat-val {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
}
.sim-modal-stat-val span {
    color: #d4280f;
}
.sim-modal-stat-lbl {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}
.sim-modal-divider {
    height: 1px;
    background: #2a2a2a;
    margin: 0 0 20px;
}
.sim-modal-steps-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}
.sim-modal-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sim-modal-step {
    display: flex;
    gap: 14px;
    position: relative;
}
.sim-modal-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 28px;
    bottom: 0;
    width: 1px;
    background: #2a2a2a;
}
.sim-modal-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.sim-modal-step-num.s1 {
    background: rgba(212, 40, 15, 0.15);
    border: 1px solid rgba(212, 40, 15, 0.4);
    color: #d4280f;
}
.sim-modal-step-num.s2 {
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: #d4a017;
}
.sim-modal-step-num.s3 {
    background: rgba(40, 200, 100, 0.1);
    border: 1px solid rgba(40, 200, 100, 0.3);
    color: #4ade80;
}
.sim-modal-step-num.s4 {
    background: rgba(100, 160, 255, 0.1);
    border: 1px solid rgba(100, 160, 255, 0.3);
    color: #64a0ff;
}
.sim-modal-step-info {
    padding-bottom: 18px;
}
.sim-modal-step-info strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #e5e0d8;
    margin-bottom: 3px;
}
.sim-modal-step-info span {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
}
.sim-modal-step:last-child .sim-modal-step-info {
    padding-bottom: 0;
}
.sim-modal-warn {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 6px;
    padding: 12px 14px;
    margin: 20px 0 22px;
}
.sim-modal-warn-icon {
    flex-shrink: 0;
    margin-top: 1px;
}
.sim-modal-warn p {
    font-size: 0.81rem;
    color: #a89060;
    line-height: 1.55;
}
.sim-modal-warn p strong {
    color: #d4a017;
}
.sim-modal-foot {
    display: flex;
    gap: 10px;
    padding-top: 4px;
}
.sim-modal-btn-cancel {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: #888;
    font-family: "Oswald", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
}
.sim-modal-btn-cancel:hover {
    border-color: #555;
    color: #e5e0d8;
}
.sim-modal-btn-start {
    flex: 2;
    padding: 12px 20px;
    background: #d4280f;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sim-modal-btn-start:hover {
    background: #d42535;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 30, 40, 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .recover-wrap {
        grid-template-columns: 1fr;
    }

    .recover-left {
        padding: 40px 32px;
    }

    .recover-right {
        padding: 40px 28px;
    }
}

/* ── Entry animation ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .sims-layout {
        grid-template-columns: 1fr;
    }

    .sims-sidebar {
        position: static;
    }

    .sims-search-bar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    .sim-thumb {
        width: 72px;
        font-size: 1.6rem;
    }

    .sim-diff {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-inner {
        grid-template-columns: 1fr;
    }
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .discs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-final-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    .nav-ctas {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .discs-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: fit-content;
    }
}
