/* ═══════════════════════════════════════════════════════════
   ROOT & RESET
   ═══════════════════════════════════════════════════════════ */
:root {
    --gold: #c5a059;
    --gold-light: #e8d08b;
    --gold-dark: #997732;
    --gold-glow: rgba(197, 160, 89, 0.3);
    --gold-gradient: linear-gradient(135deg, #e8d08b, #c5a059, #997732);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b6b6b;
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 20, 0.8);
    --bg-panel: rgba(10, 10, 10, 0.6);
    --border: rgba(255, 255, 255, 0.04);
    --border-gold: rgba(197, 160, 89, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-secondary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   MENU
   ═══════════════════════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(15px);
    padding: 0 30px;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.06);
}

.main-nav__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.main-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 15px rgba(197, 160, 89, 0.15));
}

.logo-text {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.logo-text span {
    color: var(--gold-light);
}

.main-nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.main-nav__link {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav__link:hover {
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.05);
}

.main-nav__link.active {
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.08);
}

.main-nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.main-nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 6px 12px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', Arial, sans-serif;
}

.language-btn:hover {
    border-color: var(--border-gold);
    color: var(--gold-light);
}

.language-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.language-btn.open svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 6px;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-radius: 4px;
    transition: var(--transition);
}

.language-dropdown a:hover {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-light);
}

.language-dropdown a.active {
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.1);
}

.main-nav__cta {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #222 !important;
    background: var(--gold-gradient) !important;
    padding: 8px 18px;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.15);
}

.main-nav__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.25);
}

.nav-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.1s linear;
    width: 0%;
    border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.section-header__line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.2));
}

.section-header__line:last-child {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.2), transparent);
}

.section-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - COM IMAGEM DE FUNDO
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('./assets/divine-bg.png') center top no-repeat;
    background-size: 100% auto;
    background-color: var(--bg-dark);
    padding: 40px 20px 60px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(197, 160, 89, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

#tsparticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 6px 18px 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.hero-logo {
    margin-bottom: 10px;
}

.hero-logo img {
    width: min(480px, 100%);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(197, 160, 89, 0.12));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-version {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.version-tag {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
}

.version-separator {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.5;
}

.version-custom {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2px 14px;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN
   ═══════════════════════════════════════════════════════════ */
.countdown-wrapper {
    margin-top: 4px;
}

.countdown-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 50px rgba(197, 160, 89, 0.15);
    margin-bottom: 28px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 560px;
    margin: 0 auto 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid rgba(197, 160, 89, 0.06);
    border-radius: var(--radius-lg);
    padding: 18px 12px 14px;
    transition: var(--transition);
    position: relative;
}

.countdown-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: var(--gold-gradient);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item:hover {
    transform: translateY(-2px);
}

.countdown-number {
    font-family: 'Cinzel', 'Inter', Arial, sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-top: 6px;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.hero-tagline strong {
    color: var(--gold-light);
    font-weight: 700;
}

.hero-cta {
    margin-top: 32px;
}

.hero-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #222;
    background: var(--gold-gradient);
    padding: 16px 40px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(197, 160, 89, 0.2);
}

.hero-cta__button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta__button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px rgba(197, 160, 89, 0.35);
}

.hero-cta__button:hover::before {
    opacity: 1;
}

.hero-cta__button svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-cta__button:hover svg {
    transform: translateX(4px);
}

.hero-cta__button span {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   INFO SECTION
   ═══════════════════════════════════════════════════════════ */
.info-section {
    padding: 60px 0 70px;
    position: relative;
    background: #010101;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.info-card__glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(197, 160, 89, 0.04), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover .info-card__glow {
    opacity: 1;
}

.info-card:hover {
    background: rgba(20, 18, 25, 0.9);
    transform: translateY(-2px);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.04);
    border-radius: 8px;
    transition: var(--transition);
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

.info-card:hover .info-icon {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.06);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.info-label {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-value {
    font-family: 'Cinzel', 'Tahoma', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════════════
   CLASSES SECTION
   ═══════════════════════════════════════════════════════════ */
.classes-section {
    padding: 60px 0 70px;
    position: relative;
    background: #010101;
}

.classes-slider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 380px;
}

.classes-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 380px;
}

.classes-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-card {
    flex: 0 0 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.class-card__glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    filter: blur(4px);
}

.class-card:hover .class-card__glow {
    opacity: 0.25;
}

.class-card-inner {
    width: 100%;
    height: 100%;
    min-height: 380px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.class-image {
    position: relative;
    min-height: 380px;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.class-image--left {
    justify-content: flex-start;
    padding-left: 0px;
    margin-left: -30px;
}

.class-image--left img {
    margin-left: -30px;
    max-height: 115%;
    height: 115%;
}

.class-image--mg.class-image--right {
    justify-content: flex-end;
    padding-right: 0px;
    margin-right: -50px;
}

.class-image--mg.class-image--right img {
    margin-right: -50px;
    max-height: 150%;
    height: 150%;
    top: -5%;
}

.class-image--me.class-image--right {
    justify-content: flex-end;
    padding-right: 0px;
    margin-right: -30px;
}

.class-image--me.class-image--right img {
    margin-right: -30px;
    max-height: 120%;
    height: 120%;
    margin-top: 10%;
}

.class-image--bk {
    background-size: cover !important;
    background-position: center !important;
}

.class-image img {
    max-height: 100%;
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 1.0));
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.class-card:hover .class-image img {
    transform: scale(1.04);
}

.class-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 40px 45px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    z-index: 2;
}

.class-info-center {
    text-align: center;
    max-width: 80%;
}

.class-name {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.class-desc {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

.classes-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.classes-btn svg {
    width: 20px;
    height: 20px;
}

.classes-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.classes-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
}

.classes-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.classes-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.classes-dot.active {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transform: scale(1.3);
}

.classes-dot:hover {
    background: rgba(197, 160, 89, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   ROADMAP - FORMATO ZIG-ZAG COM CONEXÕES
   ═══════════════════════════════════════════════════════════ */
.roadmap-section {
    padding: 60px 0 80px;
    position: relative;
    background: #010101;
}

.roadmap-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 50px;
}

.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Linha vertical principal no centro */
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent,
        rgba(197, 160, 89, 0.1) 10%,
        rgba(197, 160, 89, 0.2) 50%,
        rgba(197, 160, 89, 0.1) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

/* Itens ímpares: texto à esquerda, número à direita */
.roadmap-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 30px);
}

.roadmap-item:nth-child(odd) .roadmap-card {
    text-align: right;
    margin-right: 0;
}

/* Itens pares: texto à direita, número à esquerda */
.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 30px);
}

.roadmap-item:nth-child(even) .roadmap-card {
    text-align: left;
    margin-left: 0;
}

/* Círculo do número no centro */
.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.roadmap-dot .dot-number {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.roadmap-item:hover .roadmap-dot {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

/* Linhas de conexão horizontal */
.roadmap-item::before {
    content: '';
    position: absolute;
    top: 22px;
    height: 2px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.3));
    z-index: 1;
    transition: all 0.4s ease;
}

.roadmap-item:nth-child(odd)::before {
    right: calc(50% + 22px);
    left: auto;
    width: calc(50% - 80px);
}

.roadmap-item:nth-child(even)::before {
    left: calc(50% + 22px);
    right: auto;
    width: calc(50% - 80px);
}

.roadmap-item:hover::before {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.3), rgba(197, 160, 89, 0.6));
}

/* Cards */
.roadmap-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    border: 1px solid rgba(197, 160, 89, 0.03);
    transition: var(--transition);
    position: relative;
    max-width: 380px;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.roadmap-item:hover .roadmap-card::before {
    opacity: 1;
}

.roadmap-item:hover .roadmap-card {
    border-color: rgba(197, 160, 89, 0.06);
    transform: translateY(-2px);
}

.roadmap-card h4 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.roadmap-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 60px 0 80px;
    position: relative;
    background: #010101;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.05);
}

.faq-item.active {
    border-color: rgba(197, 160, 89, 0.08);
    background: rgba(20, 18, 25, 0.9);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.faq-item.active .faq-text {
    color: var(--gold-light);
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.1);
}

.faq-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-icon--plus {
    display: block;
}

.faq-icon--minus {
    display: none;
}

.faq-item.active .faq-icon--plus {
    display: none;
}

.faq-item.active .faq-icon--minus {
    display: block;
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 20px 18px 20px;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: 0.8;
    margin: 0;
}

.faq-answer p strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 48px 20px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(197, 160, 89, 0.05));
}

.footer-version {
    font-size: 0.6rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    background: rgba(197, 160, 89, 0.06);
    padding: 2px 12px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.06);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    padding: 4px 0;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: color 0.3s ease;
    opacity: 0.5;
}

.footer-col a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.08);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(197, 160, 89, 0.15);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMAÇÕES
   ═══════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .roadmap-item:nth-child(odd) {
        padding-right: 0;
    }
    .roadmap-item:nth-child(even) {
        padding-left: 0;
    }
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin-bottom: 50px;
    }
    .roadmap-item::before {
        display: none;
    }
    .roadmap-dot {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 16px;
    }
    .roadmap-item:hover .roadmap-dot {
        transform: scale(1.1);
    }
    .roadmap-card {
        max-width: 100%;
        text-align: center !important;
    }
    .roadmap-item:nth-child(odd) .roadmap-card {
        text-align: center !important;
    }
    .roadmap-item:nth-child(even) .roadmap-card {
        text-align: center !important;
    }
    .roadmap-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0 16px;
        height: 60px;
    }
    body { padding-top: 60px; }

    .main-nav__list {
        gap: 2px;
    }

    .main-nav__link {
        font-size: 0.6rem;
        padding: 6px 10px;
    }

    .main-nav__cta {
        font-size: 0.6rem;
        padding: 6px 12px;
    }

    .logo-text {
        font-size: 0.9rem;
    }
    .logo-img {
        height: 28px;
    }

    .section-title {
        font-size: 1.1rem;
        white-space: normal;
    }
    .section-header__line {
        max-width: 30px;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .hero-version .version-tag {
        font-size: 1.4rem;
    }

    .countdown-title {
        font-size: 2rem;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 320px;
    }

    .countdown-number {
        font-size: 2.8rem;
    }

    .hero-cta__button {
        font-size: 0.75rem;
        padding: 14px 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .classes-slider {
        gap: 8px;
        min-height: 300px;
    }
    .classes-container { height: 300px; }
    .class-card-inner { min-height: 300px; }
    .class-image { min-height: 300px; }
    .class-name { font-size: 1.2rem; }
    .class-desc { font-size: 0.75rem; }
    .class-overlay { padding: 30px 20px 30px; }
    .classes-btn { width: 36px; height: 36px; }
    .classes-btn svg { width: 16px; height: 16px; }

    .class-image--left {
        padding-left: 5px;
        margin-left: -15px;
    }
    .class-image--mg.class-image--right,
    .class-image--me.class-image--right {
        padding-right: 5px;
        margin-right: -15px;
    }

    .roadmap-card {
        padding: 18px 20px;
    }
    .roadmap-card h4 { font-size: 0.9rem; }
    .roadmap-card p { font-size: 0.8rem; }

    .faq-text { font-size: 0.8rem; }
    .faq-question { padding: 14px 16px; }
    .faq-answer p { font-size: 0.8rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-logo { align-items: center; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0 12px;
        height: 54px;
    }
    body { padding-top: 54px; }

    .main-nav__link {
        font-size: 0.5rem;
        padding: 4px 8px;
        letter-spacing: 0.04em;
    }

    .main-nav__cta {
        font-size: 0.5rem;
        padding: 4px 10px;
    }

    .logo-text { font-size: 0.75rem; }
    .logo-img { height: 24px; }

    .language-btn {
        font-size: 0.5rem;
        padding: 4px 8px;
    }
    .language-btn svg { width: 10px; height: 10px; }
    .language-dropdown { min-width: 120px; right: -10px; }
    .language-dropdown a { font-size: 0.65rem; padding: 6px 10px; }

    .section-title { font-size: 0.9rem; }
    .section-header__line { max-width: 15px; }
    .section-header { gap: 10px; margin-bottom: 24px; }

    .hero-logo img { max-width: 200px; }
    .hero-badge { font-size: 0.5rem; padding: 4px 12px; }
    .hero-version .version-tag { font-size: 1.1rem; }
    .hero-version .version-separator { font-size: 0.8rem; }
    .hero-version .version-custom { font-size: 0.5rem; }

    .countdown-title { font-size: 1.4rem; letter-spacing: 3px; }
    .countdown-grid { max-width: 260px; gap: 6px; }
    .countdown-number { font-size: 2rem; }
    .countdown-label { font-size: 0.5rem; }
    .countdown-item { padding: 12px 6px 10px; }

    .hero-tagline { font-size: 0.8rem; }
    .hero-cta__button {
        font-size: 0.6rem;
        padding: 10px 18px;
        gap: 8px;
    }
    .hero-cta__button svg { width: 16px; height: 16px; }

    .info-card { padding: 10px 12px; gap: 10px; }
    .info-icon { width: 30px; height: 30px; }
    .info-icon svg { width: 14px; height: 14px; }
    .info-value { font-size: 0.8rem; }

    .classes-slider { min-height: 250px; gap: 4px; }
    .classes-container { height: 250px; }
    .class-card-inner { min-height: 250px; }
    .class-image { min-height: 250px; }
    .class-image img { height: 80%; }
    .class-name { font-size: 1rem; }
    .class-desc { font-size: 0.65rem; }
    .class-overlay { padding: 20px 14px 20px; }
    .classes-btn { width: 28px; height: 28px; }
    .classes-btn svg { width: 12px; height: 12px; }
    .classes-dot { width: 6px; height: 6px; }

    .roadmap-dot { width: 36px; height: 36px; margin-bottom: 12px; }
    .roadmap-dot .dot-number { font-size: 0.65rem; }
    .roadmap-card h4 { font-size: 0.85rem; }
    .roadmap-card p { font-size: 0.7rem; }

    .faq-text { font-size: 0.7rem; }
    .faq-question { padding: 10px 12px; gap: 10px; }
    .faq-toggle { width: 22px; height: 22px; }
    .faq-icon { width: 12px; height: 12px; }
    .faq-answer p { font-size: 0.7rem; padding: 0 12px 12px 12px; }

    .footer { padding: 24px 12px 16px; }
    .footer-links { grid-template-columns: 1fr; gap: 12px; }
    .footer-logo img { width: 80px; }
    .footer-version { font-size: 0.5rem; }
    .footer-tagline { font-size: 0.65rem; }
    .footer-col h4 { font-size: 0.6rem; }
    .footer-col a { font-size: 0.7rem; }
    .footer-bottom p { font-size: 0.6rem; }

    .back-to-top { width: 36px; height: 36px; bottom: 16px; right: 16px; }
    .back-to-top svg { width: 16px; height: 16px; }
}