/* ============================================
   ONSTAGE ARTS — Landing Page Premium
   Paleta: Burgundy #800020 | Gold #E2CC58 | Black | White
   Fontes: Cormorant Garamond (títulos) + DM Sans (corpo)
   Design: Teatral, luxuoso, sofisticado
   ============================================ */

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

:root {
    /* Cores principais */
    --burgundy:      #800020;
    --burgundy-dark: #5a0016;
    --burgundy-deep: #3d0010;
    --gold:          #E2CC58;
    --gold-light:    #f0e08a;
    --gold-dim:      #c8b340;
    --gold-pale:     #f5efcd;
    --white:         #ffffff;
    --black:         #000000;
    
    /* Backgrounds */
    --bg:            #050505;
    --bg-2:          #0a0a0a;
    --bg-3:          #0f0f0f;
    --bg-card:       #111111;
    --bg-card-hover: #161616;
    
    /* Bordas e detalhes */
    --border:        rgba(226, 204, 88, 0.12);
    --border-hi:     rgba(226, 204, 88, 0.35);
    --border-glow:   rgba(226, 204, 88, 0.5);
    
    /* Texto */
    --text:          #f0ece0;
    --text-dim:      #a89f8a;
    --muted:         #6b6358;
    
    /* Estados */
    --success:       #4caf50;
    --error:         #e53935;
    
    /* Tipografia */
    --font-title:    'Cormorant Garamond', Georgia, serif;
    --font-body:     'DM Sans', -apple-system, sans-serif;
    
    /* Transições */
    --ease:          0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:   0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:   0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

/* ===== SELECTION ===== */
::selection {
    background: var(--burgundy);
    color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 90px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--ease);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none;
    transition: opacity var(--ease);
}

.nav-logo:hover { opacity: 0.85; }
.nav-logo img { 
    height: 70px; 
    width: auto; 
    object-fit: contain; 
    display: block; 
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--ease);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--ease);
}

.nav-links a:hover { 
    color: var(--gold); 
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--gold) !important;
    border: 1px solid rgba(226, 204, 88, 0.3);
    border-radius: 4px;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity var(--ease);
}

.nav-links .nav-cta:hover {
    color: var(--burgundy-dark) !important;
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(226, 204, 88, 0.25);
    transform: translateY(-1px);
}

.nav-links .nav-cta:hover::before { opacity: 1; }
.nav-links .nav-cta span { position: relative; z-index: 1; }

/* Hamburguer */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform var(--ease);
}

.nav-toggle:hover { transform: scale(1.05); }

.nav-toggle span {
    display: block;
    width: 24px; 
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--ease);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg); 
}
.nav-toggle.open span:nth-child(2) { 
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg); 
}

.nav-mobile {
    display: none;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    animation: slideDown 0.3s ease;
}

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

.nav-mobile.open { display: block; }

.nav-mobile ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
}

.nav-mobile a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--ease);
}

.nav-mobile a:hover { 
    color: var(--gold);
    padding-left: 8px;
}

.nav-mobile .nav-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--gold) !important;
    border: 1px solid rgba(226, 204, 88, 0.3);
    border-radius: 4px;
}

/* ===== CTA BUTTON GLOBAL ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(226, 204, 88, 0.35);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
    isolation: isolate;
}

.cta-button .cta-text { 
    position: relative; 
    z-index: 2; 
}

.cta-button .cta-arrow {
    position: relative;
    z-index: 2;
    transition: transform var(--ease);
}

.cta-button .cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity var(--ease);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(226, 204, 88, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.cta-button:hover {
    color: var(--burgundy-dark);
    border-color: var(--gold);
    box-shadow: 
        0 8px 30px rgba(226, 204, 88, 0.25),
        0 0 50px rgba(226, 204, 88, 0.1);
    transform: translateY(-2px);
}

.cta-button:hover .cta-glow { opacity: 1; }
.cta-button:hover .cta-arrow { transform: translateX(4px); }
.cta-button:hover::before { width: 300px; height: 300px; }

.cta-button:active { transform: translateY(0); }

/* ===== SECTION HEADERS ===== */
.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(226, 204, 88, 0.25);
    padding: 6px 16px;
    border-radius: 24px;
    margin-bottom: 1.2rem;
    background: rgba(226, 204, 88, 0.05);
}

.section-tag-light {
    color: var(--gold-light);
    border-color: rgba(226, 204, 88, 0.4);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-curtain {
    position: absolute;
    inset: 0;
    background-image: url('cortina.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.65) 0%,
        rgba(5, 5, 5, 0.45) 30%,
        rgba(5, 5, 5, 0.55) 60%,
        rgba(5, 5, 5, 0.85) 100%
    );
}

.hero-spotlight {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(226, 204, 88, 0.08) 0%,
        rgba(128, 0, 32, 0.05) 30%,
        transparent 70%
    );
    pointer-events: none;
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(128, 0, 32, 0.6);
    border: 1px solid rgba(226, 204, 88, 0.35);
    padding: 8px 20px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease both;
}

.hero-badge svg { 
    stroke: var(--gold); 
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title-line {
    display: block;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    color: var(--gold);
    text-shadow: 
        0 0 40px rgba(226, 204, 88, 0.4),
        0 4px 40px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(240, 236, 224, 0.85);
    max-width: 550px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-pale);
}

.hero-highlight-item svg { stroke: var(--gold); }

.hero-highlight-divider {
    width: 1px;
    height: 20px;
    background: rgba(226, 204, 88, 0.3);
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.4s both;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
    background: rgba(5, 5, 5, 0.7);
    border: 1px solid rgba(226, 204, 88, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
    transition: all var(--ease);
}

.countdown-item:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}

.countdown-value {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

.countdown-sep {
    font-size: 2rem;
    color: var(--gold-dim);
    opacity: 0.4;
    margin-bottom: 16px;
}

.countdown-ended {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    padding: 14px 28px;
    border: 1px solid rgba(226, 204, 88, 0.3);
    border-radius: 8px;
    background: rgba(128, 0, 32, 0.3);
    backdrop-filter: blur(10px);
}

.cta-hero {
    margin-top: 0.5rem;
    animation: fadeUp 0.8s ease 0.5s both;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    cursor: pointer;
    transition: all var(--ease);
}

.hero-scroll-indicator:hover {
    color: var(--gold);
}

.hero-scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

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

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

/* ===== SECTIONS COMMON ===== */
.benefits,
.event-details,
.founders,
.form-section,
.footer {
    position: relative;
    z-index: 1;
}

.section-decor {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-hi) 20%,
        var(--border-hi) 80%,
        transparent
    );
}

.section-decor-top { top: 0; }

/* ===== BENEFÍCIOS ===== */
.benefits {
    padding: 6rem 0;
    background: var(--bg-2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--ease);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    opacity: 0;
    transition: opacity var(--ease);
}

.benefit-card:hover {
    border-color: var(--border-hi);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(226, 204, 88, 0.05);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(226, 204, 88, 0.05),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.benefit-card:hover .benefit-shine { left: 150%; }

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.3), rgba(128, 0, 32, 0.1));
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all var(--ease);
}

.benefit-icon svg {
    stroke: var(--gold);
    transition: transform var(--ease);
}

.benefit-card:hover .benefit-icon {
    border-color: var(--border-hi);
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.5), rgba(128, 0, 32, 0.2));
    box-shadow: 0 0 30px rgba(226, 204, 88, 0.1);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== DETALHES ===== */
.event-details {
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all var(--ease);
    opacity: 0;
    transform: translateY(20px);
}

.detail-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.detail-item:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.4), rgba(128, 0, 32, 0.15));
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--ease);
}

.detail-icon svg {
    stroke: var(--gold);
}

.detail-item:hover .detail-icon {
    border-color: var(--border-hi);
    box-shadow: 0 0 25px rgba(226, 204, 88, 0.12);
}

.detail-content h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.detail-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-sub {
    color: var(--muted);
    font-size: 0.82rem;
}

/* Price Banner */
.price-banner {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(128, 0, 32, 0.35),
        rgba(128, 0, 32, 0.15),
        rgba(226, 204, 88, 0.08)
    );
    border: 1px solid rgba(226, 204, 88, 0.3);
    border-radius: 16px;
    padding: 3rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.price-banner.revealed {
    opacity: 1;
    transform: translateY(0);
}

.price-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(226, 204, 88, 0.15),
        transparent 60%
    );
    pointer-events: none;
}

.price-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.price-value {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 40px rgba(226, 204, 88, 0.3);
}

.price-note {
    font-size: 0.88rem;
    color: var(--gold-pale);
    font-style: italic;
}

/* ===== FUNDADORES ===== */
.founders {
    padding: 6rem 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    transition: all var(--ease);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.founder-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.founder-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(128, 0, 32, 0.15);
}

.founder-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(226, 204, 88, 0.03),
        transparent
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

.founder-card:hover .founder-shine { left: 150%; }

.founder-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.founder-avatar.monique {
    background: radial-gradient(circle at 30% 30%, #b00030, #5a0016);
}

.founder-avatar.victor {
    background: radial-gradient(circle at 30% 30%, #700018, #3d0010);
}

.founder-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold-dim);
    opacity: 0.6;
    transition: all var(--ease);
}

.founder-card:hover .founder-avatar-ring {
    inset: -8px;
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 30px rgba(226, 204, 88, 0.2);
}

.founder-initials {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
}

.founder-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.founder-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.founder-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    margin: 1.2rem auto;
}

.founder-bio {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FORMULÁRIO ===== */
.form-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.form-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.form-spotlight {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(128, 0, 32, 0.25),
        transparent 60%
    );
}

.form-wrapper {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(226, 204, 88, 0.25);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(128, 0, 32, 0.15);
}

.form-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    pointer-events: none;
}

.form-decoration-tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.form-decoration-br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.8rem 0 0.5rem;
}

.form-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.form-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

#inscriptionForm {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group label svg {
    stroke: var(--gold-dim);
}

.form-group input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--ease);
}

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

.form-group input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-dim);
    box-shadow: 
        0 0 0 3px rgba(226, 204, 88, 0.08),
        0 0 20px rgba(226, 204, 88, 0.05);
}

.form-group input.error {
    border-color: var(--error);
    background: rgba(229, 57, 53, 0.05);
}

.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--ease);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E2CC58' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group select option {
    background: #111111;
    color: var(--text);
    padding: 12px;
}

.form-group select optgroup {
    background: #0a0a0a;
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
    padding: 8px 0;
}

.form-group select:focus {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-dim);
    box-shadow: 
        0 0 0 3px rgba(226, 204, 88, 0.08),
        0 0 20px rgba(226, 204, 88, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E2CC58' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-group select.error {
    border-color: var(--error);
    background-color: rgba(229, 57, 53, 0.05);
}

.form-group select:invalid {
    color: var(--muted);
}

.error-msg {
    color: var(--error);
    font-size: 0.75rem;
    min-height: 1rem;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--gold);
    border: 1px solid rgba(226, 204, 88, 0.35);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    transition: all var(--ease);
    overflow: hidden;
}

.submit-btn .btn-text,
.submit-btn .btn-loader {
    position: relative;
    z-index: 2;
}

.submit-btn .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity var(--ease);
    z-index: 1;
}

.submit-btn:hover:not(:disabled) {
    color: var(--burgundy-dark);
    border-color: var(--gold);
    box-shadow: 
        0 8px 30px rgba(226, 204, 88, 0.25),
        0 0 50px rgba(226, 204, 88, 0.1);
    transform: translateY(-2px);
}

.submit-btn:hover:not(:disabled) .btn-glow { opacity: 1; }

.submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(226, 204, 88, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-msg {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.88rem;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
}

.form-msg.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-msg.error {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
    margin-top: 1.5rem;
}

.form-footer svg {
    stroke: var(--muted);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-top .container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand { }

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    margin-bottom: 1rem;
    transition: opacity var(--ease);
}

.footer-logo:hover { opacity: 1; }

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-col h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.8;
    text-decoration: none;
    transition: all var(--ease);
}

.footer-col a svg {
    stroke: var(--muted);
    flex-shrink: 0;
    transition: stroke var(--ease);
}

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

.footer-col a:hover svg { stroke: var(--gold); }

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-address svg {
    stroke: var(--muted);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.75rem;
}

.footer-credits {
    color: var(--muted);
    font-size: 0.75rem;
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .footer-top .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body { padding-top: 64px; }
    .navbar { height: 64px; }
    .nav-container { height: 64px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-logo img { height: 60px; }
    
    .hero { padding: 3rem 1.5rem 5rem; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-highlights { gap: 1rem; }
    .hero-highlight-divider { display: none; }
    
    .countdown-value { font-size: 1.6rem; }
    .countdown-item { min-width: 62px; padding: 10px 12px; }
    
    .benefits, .event-details, .form-section { padding: 4rem 0; }
    .section-header { margin-bottom: 3rem; }
    
    .price-content { flex-direction: column; align-items: flex-start; }
    .price-banner { padding: 2rem; }
    
    .form-wrapper { padding: 2rem 1.5rem; margin: 0 1rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    body { padding-top: 70px; }
    .navbar { height: 70px; }
    .nav-container { height: 70px; padding: 0 1rem; }
    .nav-logo img { height: 50px; }
    
    .hero { padding: 2.5rem 1rem 4rem; }
    .hero-title { font-size: clamp(2.2rem, 12vw, 3rem); }
    .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
    .hero-subtitle { font-size: 0.95rem; }
    
    .countdown-item { min-width: 52px; padding: 8px 10px; }
    .countdown-value { font-size: 1.3rem; }
    .countdown-sep { font-size: 1.3rem; margin-bottom: 12px; }
    
    .cta-button { padding: 14px 24px; font-size: 0.75rem; }
    
    .container { padding: 0 1rem; }
    
    .benefits-grid, .details-grid { gap: 1rem; }
    .benefit-card, .detail-item { padding: 1.5rem; }
    
    .price-value { font-size: 2.2rem; }
    
    .form-wrapper { padding: 1.5rem 1.2rem; border-radius: 16px; }
    .form-header h2 { font-size: 1.6rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-top { padding: 3rem 0 2rem; }
}
