/* =============================================
   PMI Mozambique Conference 2026 — Stylesheet
   Colors from logo:
   - Orange:    #E0611F
   - Cyan:      #44789B
   - Purple:    #461DA3
   - Black:     #1A1A1A
   ============================================= */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Brand Colors */
    --orange: #E0611F;
    --orange-light: #F47B3E;
    --orange-dark: #B84A12;
    --orange-glow: rgba(224, 97, 31, 0.15);

    --cyan: #44789B;
    --cyan-light: #659ABF;
    --cyan-dark: #255575;
    --cyan-glow: rgba(68, 120, 155, 0.15);

    --purple: #461DA3;
    --purple-light: #6138C6;
    --purple-dark: #2C0E6B;
    --purple-glow: rgba(70, 29, 163, 0.15);

    /* Neutrals */
    --black: #1A1A1A;
    --dark: #0D0D14;
    --dark-alt: #14141F;
    --dark-card: #1C1C2A;
    --dark-surface: #22223A;
    --gray-900: #2A2A3C;
    --gray-700: #4A4A5C;
    --gray-500: #8A8A9C;
    --gray-300: #C4C4D4;
    --gray-100: #E8E8F0;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-glow-orange: 0 0 30px rgba(224, 97, 31, 0.3);
    --shadow-glow-cyan: 0 0 30px rgba(68, 120, 155, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(70, 29, 163, 0.3);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--gray-300);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    border-color: var(--orange);
    box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(224, 97, 31, 0.5);
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-cyan);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(68, 120, 155, 0.1);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(13, 13, 20, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(68, 120, 155, 0.1);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 10px 24px;
}

.nav-link.nav-cta:hover {
    box-shadow: var(--shadow-glow-orange);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 40px;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, var(--purple-glow) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, var(--orange-glow) 0%, transparent 40%),
                radial-gradient(ellipse at 60% 80%, var(--cyan-glow) 0%, transparent 40%),
                var(--dark);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: -50px;
    left: -80px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--purple);
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--cyan);
    top: 20%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

.hero-container {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(224, 97, 31, 0.2), rgba(224, 97, 31, 0.05));
    border: 1px solid rgba(224, 97, 31, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-year {
    font-size: 1.2em;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 32px;
    padding: 16px 24px;
    border-left: 3px solid var(--purple);
    background: rgba(70, 29, 163, 0.1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-tagline i {
    color: var(--purple-light);
    font-size: 0.8rem;
    margin: 0 4px;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--white);
}

.hero-detail i {
    color: var(--cyan);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-logo-img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(224, 97, 31, 0.15));
}

/* Countdown */
.countdown-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 50px auto 0;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.countdown-label {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(28, 28, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 120, 155, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-top: 6px;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 18px;
}

/* --- Sections Common --- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(68, 120, 155, 0.15), rgba(70, 29, 163, 0.1));
    border: 1px solid rgba(68, 120, 155, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.text-accent {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Sobre Section --- */
.section-sobre {
    background: radial-gradient(ellipse at 10% 90%, var(--purple-glow) 0%, transparent 40%),
                radial-gradient(ellipse at 90% 10%, var(--cyan-glow) 0%, transparent 40%),
                var(--dark-alt);
}

.sobre-top-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.sobre-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-card-main {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(68, 120, 155, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-base);
}

.sobre-card-main:hover {
    border-color: rgba(68, 120, 155, 0.3);
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-4px);
}

.sobre-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.sobre-card-main h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.sobre-card-main p {
    color: var(--gray-300);
    line-height: 1.8;
}

/* Features Grid (below the main card, inside left column) */
.sobre-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sobre-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.sobre-feature:hover {
    border-color: rgba(224, 97, 31, 0.3);
    transform: translateX(6px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.sobre-feature:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.sobre-feature:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--cyan), var(--cyan-light)); }
.sobre-feature:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.sobre-feature:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }

.sobre-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.sobre-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Video Section — 9:16 portrait beside card */
.video-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--white);
    white-space: nowrap;
}

.video-title i {
    color: var(--orange);
    margin-right: 8px;
}

.video-wrapper {
    position: relative;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(68, 120, 155, 0.15);
    box-shadow: var(--shadow-lg);
    background: var(--dark-card);
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-btn-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(224, 97, 31, 0.5);
    animation: playBlink 2s ease-in-out infinite;
}

.play-btn-icon i {
    margin-left: 4px; /* optical centering for play triangle */
}

.play-btn-pulse {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    z-index: 1;
    animation: playPulseRing 2s ease-out infinite;
}

@keyframes playBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.92); }
}

@keyframes playPulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.video-play-overlay:hover .play-btn-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(224, 97, 31, 0.7);
    animation: none;
    opacity: 1;
}

/* --- Programa Section --- */
.section-programa {
    background: var(--dark);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--cyan), var(--purple));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1.0s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--dark);
    box-shadow: 0 0 10px rgba(224, 97, 31, 0.4);
    z-index: 1;
}

.timeline-item:nth-child(even)::before {
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(68, 120, 155, 0.4);
}

.timeline-time {
    position: absolute;
    left: -105px;
    top: 18px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    width: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-time {
    color: var(--cyan);
}

.timeline-content {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: rgba(224, 97, 31, 0.2);
    transform: translateX(6px);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(224, 97, 31, 0.1);
    color: var(--orange);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 1rem;
}

.timeline-item:nth-child(even) .timeline-icon {
    background: rgba(68, 120, 155, 0.1);
    color: var(--cyan);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* --- Palestrantes Section --- */
.section-palestrantes {
    background: radial-gradient(ellipse at 80% 50%, var(--orange-glow) 0%, transparent 40%),
                var(--dark-alt);
}

.speakers-coming-soon {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(68, 120, 155, 0.1);
    border-radius: var(--radius-lg);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.speakers-coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.speakers-coming-soon > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.csf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-300);
    transition: var(--transition-base);
}

.csf-item:hover {
    border-color: rgba(224, 97, 31, 0.3);
}

.csf-item i {
    color: var(--orange);
    font-size: 1.1rem;
}

.coming-soon-note {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.coming-soon-note i {
    color: var(--cyan);
    margin-right: 6px;
}

/* --- Ingressos Section --- */
.section-ingressos {
    background: var(--dark);
}

.early-bird-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: -30px auto 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(224, 97, 31, 0.15), rgba(224, 97, 31, 0.05));
    border: 1px solid rgba(224, 97, 31, 0.3);
    border-radius: var(--radius-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 97, 31, 0.2); }
    50% { box-shadow: 0 0 20px 4px rgba(224, 97, 31, 0.1); }
}

.alert-icon {
    font-size: 1.5rem;
    color: var(--orange);
}

.alert-content {
    font-size: 0.95rem;
    color: var(--gray-300);
}

.alert-content strong {
    color: var(--orange);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.ticket-card {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.ticket-earlybird::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.ticket-fase1::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-light)); }
.ticket-fase2::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.ticket-fase3::before { background: linear-gradient(90deg, var(--gray-700), var(--gray-500)); }

.ticket-card:hover {
    transform: translateY(-6px);
    border-color: rgba(68, 120, 155, 0.2);
}

.ticket-card.active-phase {
    border-color: var(--orange);
    box-shadow: var(--shadow-glow-orange);
}

.ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.ticket-phase {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.ticket-dates {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.ticket-dates i {
    margin-right: 6px;
    color: var(--cyan);
}

.ticket-prices {
    margin-bottom: 24px;
}

.ticket-price-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
}

.ticket-price-item.member {
    background: rgba(224, 97, 31, 0.08);
    border: 1px solid rgba(224, 97, 31, 0.15);
}

.ticket-price-item.non-member {
    background: rgba(68, 120, 155, 0.08);
    border: 1px solid rgba(68, 120, 155, 0.15);
}

.price-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.price-value small {
    font-size: 0.6em;
    color: var(--gray-500);
}

.ticket-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.tickets-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.tickets-note i {
    color: var(--cyan);
    margin-right: 6px;
}

.tickets-note strong {
    color: var(--orange);
}

/* --- Parceiros Section --- */
.section-parceiros {
    background: radial-gradient(ellipse at 50% 0%, var(--cyan-glow) 0%, transparent 40%),
                var(--dark-alt);
}

.partners-coming-soon {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(68, 120, 155, 0.1);
    border-radius: var(--radius-lg);
}

.partners-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.partners-coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.partners-coming-soon > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.partner-cta {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(68, 120, 155, 0.15);
    border-radius: var(--radius-md);
}

.partner-cta h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.partner-cta h4 i {
    color: var(--orange);
    margin-right: 8px;
}

.partner-cta p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- Inscrição Section --- */
.section-inscricao {
    background: radial-gradient(ellipse at 30% 80%, var(--orange-glow) 0%, transparent 40%),
                radial-gradient(ellipse at 70% 20%, var(--purple-glow) 0%, transparent 40%),
                var(--dark);
}

.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: var(--transition-base);
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed {
    opacity: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 2px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.step-indicator.active .step-number {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-color: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.step-indicator.completed .step-number {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    border-color: var(--cyan);
    color: var(--white);
    box-shadow: var(--shadow-glow-cyan);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    white-space: nowrap;
}

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

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-700);
    margin: 0 16px;
    margin-bottom: 28px;
    transition: var(--transition-base);
}

.step-line.active {
    background: linear-gradient(90deg, var(--cyan), var(--orange));
}

/* Form Container */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-step-title i {
    color: var(--orange);
    margin-right: 8px;
}

.form-step-desc {
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-align: center;
}

.payment-card:hover {
    border-color: rgba(68, 120, 155, 0.3);
    background: var(--dark-surface);
}

.payment-option input:checked + .payment-card {
    border-color: var(--orange);
    background: rgba(224, 97, 31, 0.08);
    box-shadow: var(--shadow-glow-orange);
}

.payment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(68, 120, 155, 0.15), rgba(70, 29, 163, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
}

.payment-icon-img {
    background: var(--white);
    padding: 8px;
}

.payment-icon-img img {
    height: 32px;
    width: auto;
}

.payment-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.payment-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--cyan);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
    outline: none;
}

.form-group input::placeholder {
    color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(68, 120, 155, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238A8A9C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--white);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-sm);
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

/* Success */
.success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(68, 120, 155, 0.15);
    border-radius: var(--radius-lg);
}

.success-icon {
    font-size: 4rem;
    color: var(--cyan);
    margin-bottom: 24px;
    animation: successBounce 0.8s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--cyan);
}

.success-message > p {
    color: var(--gray-300);
    margin-bottom: 24px;
}

.success-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 20px;
    background: rgba(68, 120, 155, 0.08);
    border: 1px solid rgba(68, 120, 155, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.success-info > i {
    color: var(--cyan);
    font-size: 1.2rem;
    margin-top: 2px;
}

.success-info p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.success-details {
    text-align: left;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.success-details p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.success-details p:last-child {
    border-bottom: none;
}

.success-details span {
    color: var(--white);
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: var(--dark-alt);
    border-top: 1px solid rgba(68, 120, 155, 0.1);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-300);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-tagline {
    color: var(--gray-500) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 6px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-contact p i {
    color: var(--orange);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow-orange);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(224, 97, 31, 0.5);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-logo-area {
        order: 1;
    }

    .hero-logo-img {
        max-width: 300px;
    }

    .hero-tagline {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--purple);
        border-radius: var(--radius-sm);
    }

    .hero-details {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .video-wrapper {
        width: 240px;
    }

    .video-section {
        order: -1;
    }

    .sobre-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        background: rgba(13, 13, 20, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 24px;
        overflow-y: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE/Edge */
    }

    .nav-menu::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 110px 24px 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .countdown {
        padding: 20px 16px;
        gap: 6px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

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

    .payment-methods {
        grid-template-columns: 1fr;
    }

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

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .sobre-features-grid {
        grid-template-columns: 1fr;
    }

    .video-wrapper {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item::before {
        left: -34px;
    }

    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== MODAL DE INSCRIÇÃO ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border: 1px solid rgba(68, 120, 155, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--gray-300);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-base);
    z-index: 2;
}

.modal-close:hover {
    background: rgba(224, 97, 31, 0.2);
    color: var(--orange-light);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 32px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(68, 120, 155, 0.3);
}

.modal-title {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
}

.modal-body {
    padding: 32px 24px;
    text-align: center;
}

.modal-question {
    font-size: 1.1rem;
    color: var(--gray-100);
    margin-bottom: 24px;
    font-weight: 500;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.member-code-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: left;
    animation: fadeInDown 0.4s ease;
}

.member-code-section label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 14px;
    color: var(--cyan);
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 12px 12px 40px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.input-group input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(68, 120, 155, 0.2);
}

.w-100 {
    width: 100%;
}
