/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Unity Financial Brand Colors - Adjusted */
    --unity-purple: #6B3AA0;  /* Softer purple */
    --unity-purple-dark: #512783;  /* Original purple as dark variant */
    --unity-purple-light: #8B5BC6;  /* Lighter purple */
    --unity-purple-50: #F3E8FF;  /* Very light purple for backgrounds */

    --unity-orange: #FF6B35;  /* More vibrant coral-orange */
    --unity-orange-dark: #E55A2B;
    --unity-orange-light: #FF8A65;

    /* Grays */
    --unity-gray-50: #FAFAFA;
    --unity-gray-100: #F5F5F5;
    --unity-gray-200: #EEEEEE;
    --unity-gray-300: #E0E0E0;
    --unity-gray-400: #BDBDBD;
    --unity-gray-500: #9E9E9E;
    --unity-gray-600: #757575;
    --unity-gray-700: #616161;
    --unity-gray-800: #424242;
    --unity-gray-900: #212121;

    /* Legacy variables for compatibility */
    --purple: #6B3AA0;
    --purple-dark: #512783;
    --purple-light: #8B5BC6;
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --orange-light: #FF8A65;
    --dark: #212121;
    --gray: #757575;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--unity-gray-900);
    line-height: 1.6;
    background: var(--white);
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--unity-purple) 0%, var(--unity-purple-light) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    width: 120px;
    height: auto;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 20px auto 0;
}

.loader-progress {
    height: 100%;
    background: white;
    width: 0;
    border-radius: 2px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo-event {
    height: 35px !important;
    max-width: 150px;
}

.nav-divider {
    width: 1px;
    height: 30px;
    background: #E5E7EB;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--unity-purple);
}

.nav-cta {
    background: var(--unity-purple);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.nav-cta:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Full Page Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    min-width: 120%;
    min-height: 120%;
    object-fit: cover;
    border: none;
    pointer-events: none;
}

/* Video overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--unity-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    margin: 0.3rem 0;
}

.title-word {
    display: inline-block;
}

.title-line.accent .title-word {
    color: var(--unity-orange);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin: 3rem 0;
    position: relative;
    z-index: 100;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--unity-orange), var(--unity-orange-light));
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-scroll {
    margin-top: 3rem;
}

.scroll-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    margin: 1rem auto 0;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== SECTIONS BASE ===== */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: var(--unity-purple);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.title-split {
    display: block;
}

.gradient {
    color: var(--unity-orange) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* ===== PRIZE SECTION ===== */
.prize-section {
    background: transparent;
    position: relative;
}

.prize-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(107, 58, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 91, 198, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.prize-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .prize-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.prize-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.prize-card.main {
    background: linear-gradient(135deg, rgba(107, 58, 160, 0.95), rgba(139, 91, 198, 0.9));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    position: relative;
    overflow: hidden;
}

.prize-card.main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Lululemon Card Specific Styles */
.lululemon-card {
    padding: 3.5rem 3rem;
}

.lululemon-logo {
    margin-bottom: 2rem;
    opacity: 0.95;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.lululemon-logo svg {
    width: 180px;
    height: 45px;
}

.prize-highlight {
    margin-bottom: 1.5rem;
}

.prize-value {
    display: inline-block;
    background: var(--unity-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.prize-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--unity-orange);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-emoji {
    font-size: 3rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.card-description {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.card-badge.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Steps */
.prize-steps {
    background: transparent;
    padding: 0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steps-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--unity-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(107, 58, 160, 0.4);
}

.step-content h5 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--unity-purple-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--unity-gray-500);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Benefits Section Enhanced */
.benefits-section {
    margin-top: 4rem;
    padding: 3rem 0;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 58, 160, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-radius: 30px;
    z-index: -1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.benefit-card.enhanced {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--unity-purple) 0%, var(--unity-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card.enhanced:hover::before {
    opacity: 1;
}

.benefit-card:hover,
.benefit-card.enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(107, 58, 160, 0.3);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(107, 58, 160, 0.1);
    line-height: 1;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--unity-purple) 0%, var(--unity-purple-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(107, 58, 160, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-icon-wrapper .benefit-icon {
    width: 28px;
    height: 28px;
    color: white;
    font-size: inherit;
    margin-bottom: 0;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.benefit-card.enhanced h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--unity-purple-dark);
    font-weight: 700;
    text-shadow: none;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.benefit-card.enhanced p {
    color: var(--unity-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.benefit-tag {
    display: inline-block;
    background: var(--unity-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: transparent;
    position: relative;
    padding: 100px 0;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--unity-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Visual Card */
.visual-card {
    background: linear-gradient(135deg, rgba(107, 58, 160, 0.9) 0%, rgba(139, 91, 198, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== REGISTER SECTION ===== */
.register-section {
    background: transparent;
    position: relative;
    padding: 100px 0;
    z-index: 50;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.modern-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    position: relative;
    z-index: 100;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--unity-gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    color: var(--unity-gray-900);
}

.form-input::placeholder {
    color: var(--unity-gray-500);
    font-size: 0.95rem;
}

/* Style for select dropdowns */
.form-input option {
    background: white;
    color: var(--unity-gray-900);
}

.form-input option:first-child {
    color: var(--unity-gray-500);
}

/* Style for empty select */
select.form-input:invalid {
    color: var(--unity-gray-500);
}

select.form-input:valid {
    color: var(--unity-gray-900);
}

select.form-input {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23424242' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-input:hover {
    border-color: var(--unity-gray-400);
    background: var(--unity-gray-50);
}

.form-input:focus {
    outline: none;
    border-color: var(--unity-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    background: white;
}

/* Labels removed - using placeholders instead */

.form-check {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.check-input {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    accent-color: var(--unity-orange);
    cursor: pointer;
}

.check-input:checked {
    background-color: var(--unity-orange);
}

.check-label {
    color: var(--unity-gray-700);
    font-size: 0.95rem;
}

.btn-submit {
    background: var(--unity-orange);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    display: none;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 2rem auto;
    border: 2px solid rgba(107, 58, 160, 0.1);
    position: relative;
    animation: successFadeIn 0.6s ease;
    min-height: 400px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-success[style*="display: block"] {
    display: flex !important;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon svg {
    color: #10B981;
}

.success-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: var(--unity-purple);
    font-weight: 700;
}

.success-message {
    color: var(--unity-gray-700);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.success-luck {
    font-size: 1.5rem;
    color: var(--unity-orange);
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 30px;
    border: 2px solid var(--unity-orange);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--unity-gray-900);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.9;
}

.footer-event h4 {
    margin-bottom: 0.5rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== DYNAMIC CONTRAST SYSTEM ===== */
/* Transiciones suaves para cambio de contraste */
.section-title,
.card-description,
.step-content p,
.benefit-card p,
.service-text p,
.section-label,
.prize-card,
.step-item,
.benefit-card,
.service-item,
.modern-form,
.form-input {
    transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

/* Modo oscuro para textos (cuando hay fondo claro) */
.dark-mode.section-title {
    color: var(--unity-gray-900) !important;
    text-shadow: none !important;
}

.dark-mode.section-label {
    background: var(--unity-purple) !important;
    color: white !important;
}

/* Cards en modo oscuro */
.dark-mode.prize-card,
.dark-mode.step-item,
.dark-mode.benefit-card,
.dark-mode.service-item {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(107, 58, 160, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.dark-mode.prize-card .card-title,
.dark-mode.step-content h5,
.dark-mode.benefit-card h4,
.dark-mode.service-text h4 {
    color: var(--unity-dark) !important;
    text-shadow: none !important;
}

.dark-mode.card-description,
.dark-mode.step-content p,
.dark-mode.benefit-card p,
.dark-mode.service-text p {
    color: var(--gray) !important;
    text-shadow: none !important;
}

/* Formulario en modo oscuro */
.dark-mode.modern-form {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(107, 58, 160, 0.1) !important;
}

.dark-mode.form-input {
    background: white !important;
    border: 2px solid var(--unity-gray-300) !important;
    color: var(--unity-gray-900) !important;
}

.dark-mode.form-input::placeholder {
    color: var(--unity-gray-500) !important;
}

.dark-mode.form-input:focus {
    border-color: var(--unity-purple) !important;
    box-shadow: 0 0 0 4px rgba(107, 58, 160, 0.1) !important;
}

.dark-mode.form-input option {
    background: white !important;
    color: var(--unity-gray-900) !important;
}

/* Estado de transición del body */
body.transitioning-to-light {
    /* Nada por ahora, preparado para futuras animaciones */
}

body.light-background .section-title {
    color: var(--unity-gray-900);
    text-shadow: none;
}

body.light-background .section-subtitle {
    color: var(--gray);
    text-shadow: none;
}

body.light-background .register-section {
    /* Ajustes específicos para la sección de registro */
}

/* Mantener overlay oscuro consistente */
body.light-background .video-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Override GSAP animations for visibility */
[data-gsap="fade-up"].form-wrapper,
[data-gsap="fade-up"].hero-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

#leadForm {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force visibility for about section */
.about-section,
.about-grid,
.about-content,
.about-visual,
[data-gsap="fade-right"],
[data-gsap="fade-left"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--dark);
        margin: 5px 0;
        transition: all 0.3s;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s;
        display: block;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-link {
        display: block;
        padding: 1rem;
        color: var(--dark);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        border-radius: 10px;
    }

    .mobile-link:hover {
        background: var(--light-gray);
    }

    .mobile-cta {
        background: var(--unity-purple);
        color: white;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}