/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #131318;
    --bg-card: #1a1a24;
    
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #cbd5f5;
    
    --border-color: #2a2a35;
    
    /* Neon Colors */
    --neon-cyan: hsl(180, 100%, 50%);
    --neon-magenta: hsl(320, 100%, 60%);
    --neon-yellow: hsl(55, 100%, 50%);
    
    /* Spacing */

    --section-padding: 6rem 0;
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

/* Neon Text Effects */
.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    animation: neon-flicker 3s infinite alternate;
}

.neon-text-magenta {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta), 0 0 20px var(--neon-magenta);
}

.neon-text-yellow {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
}

.gradient-neon-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 50%, var(--neon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan { color: var(--neon-cyan); }
.text-magenta { color: var(--neon-magenta); }
.text-yellow { color: var(--neon-yellow); }

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-cyan {
    background-color: hsla(180, 100%, 50%, 0.05);
}

.gradient-orb-magenta {
    background-color: hsla(320, 100%, 60%, 0.05);
}

.gradient-orb-yellow {
    background-color: hsla(55, 100%, 50%, 0.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}


/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    border: none;
    text-decoration: none;
}

.btn-lg {
    padding: 10px 22px;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-neon-cyan {
    background: transparent;
    border: 2px solid var(--neon-cyan) !important;
    color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.btn-neon-cyan:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
    transform: translateY(-2px);
}

.btn-neon-magenta {
    background-color: transparent;
    border: 2px solid var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 15px hsla(320, 100%, 60%, 0.3);
}

.btn-neon-magenta:hover {
    background-color: var(--neon-magenta);
    color: var(--bg-primary);
    box-shadow: 0 0 25px hsla(320, 100%, 60%, 0.5);
    transform: translateY(-2px);
}

.btn-neon-yellow {
    background-color: transparent;
    border: 2px solid var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 15px hsla(55, 100%, 50%, 0.3);
}

.btn-neon-yellow:hover {
    background-color: var(--neon-yellow);
    color: var(--bg-primary);
    box-shadow: 0 0 25px hsla(55, 100%, 50%, 0.5);
    transform: translateY(-2px);
}

.btn-neon-filled {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: white;
    border: none;
    box-shadow: 0 0 20px hsla(180, 100%, 50%, 0.4);
}

.btn-neon-filled:hover {
    box-shadow: 0 0 30px hsla(180, 100%, 50%, 0.6);
    transform: translateY(-2px) scale(1.05);
}

/* ===================================
   Header
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

.logo {
    height: 44px;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.75rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-link {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    opacity: 0.9;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: inherit;
}

.language-link:hover {
    opacity: 1;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #fff;
}

.phone-link .icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 6px;
    align-items: center;
    justify-content: center;
}

.menu-toggle .icon,
.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.mobile-menu {
    background: rgba(8, 8, 15, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 13px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--neon-cyan);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .nav-desktop,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 901px) {
    .nav-desktop,
    .header-actions {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 15, 0.7) 0%, 
        rgba(10, 10, 15, 0.5) 50%, 
        rgba(10, 10, 15, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
    text-align: center;
}

.hero-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-logo {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-taglines {
    margin-bottom: 2rem;
}

.hero-tagline-main {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hero-tagline-sub {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 150px);
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.feature-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background-color: rgba(26, 26, 36, 0.5);
    font-size: 0.875rem;
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* ===================================
   Experience Section
   =================================== */
.experience {
    padding: var(--section-padding);
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(26, 26, 36, 0.5);
    border: 2px solid;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card-cyan {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px hsla(180, 100%, 50%, 0.3);
}

.feature-card-magenta {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 15px hsla(320, 100%, 60%, 0.3);
}

.feature-card-yellow {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px hsla(55, 100%, 50%, 0.3);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.icon-bg-cyan {
    background-color: hsla(180, 100%, 50%, 0.1);
}

.icon-bg-magenta {
    background-color: hsla(320, 100%, 60%, 0.1);
}

.icon-bg-yellow {
    background-color: hsla(55, 100%, 50%, 0.1);
}

.feature-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

.gallery-label p {
    font-family: var(--font-display);
    font-size: 1.125rem;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding);
    background-color: rgba(26, 26, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.info-badge .icon {
    width: 1rem;
    height: 1rem;
    color: var(--neon-cyan);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: rgba(26, 26, 36, 0.5);
    border: 2px solid;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card-cyan {
    border-color: var(--neon-cyan);
}

.pricing-card-cyan:hover {
    box-shadow: 0 0 30px hsla(180, 100%, 50%, 0.4);
}

.pricing-card-magenta {
    border-color: var(--neon-magenta);
}

.pricing-card-magenta:hover {
    box-shadow: 0 0 30px hsla(320, 100%, 60%, 0.4);
}

.pricing-card-yellow {
    border-color: var(--neon-yellow);
}

.pricing-card-yellow:hover {
    box-shadow: 0 0 30px hsla(55, 100%, 50%, 0.4);
}

.pricing-card-popular {
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.badge-cyan,
.badge-magenta,
.badge-yellow {
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.badge-cyan { background-color: var(--neon-cyan); }
.badge-magenta { background-color: var(--neon-magenta); }
.badge-yellow { background-color: var(--neon-yellow); }

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

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
}

.price-currency {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.pricing-feature span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: var(--section-padding);
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .location-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-map {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px hsla(180, 100%, 50%, 0.2);
    aspect-ratio: 16/9;
}

@media (min-width: 1024px) {
    .location-map {
        aspect-ratio: 1;
    }
}

.location-map iframe {
    position: absolute;
    inset: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(26, 26, 36, 0.5);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(4px);
}

.info-card-header {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-text {
    color: var(--text-secondary);
}

.info-link {
    color: var(--neon-cyan);
    margin-top: 0.5rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 0.8;
}

.info-content {
    flex: 1;
}

.schedule-list {
    margin-top: 0.75rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.schedule-day {
    color: var(--text-secondary);
}

.schedule-hours {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-list {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-cyan);
}

.contact-link .icon {
    width: 1rem;
    height: 1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: rgba(26, 26, 36, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr 1fr;
        justify-items: center;
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-logo .logo {
    height: 4rem;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-social {
        align-items: center;
    }
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.social-link .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===================================
   Team Building Page
   =================================== */
.team-hero {
    padding: calc(8rem - 70px) 0 5rem;
    position: relative;
    overflow: hidden;
}

.team-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .team-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-hero-content {
    z-index: 10;
    position: relative;
}

.team-hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.team-hero-text-secondary {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.team-hero-image {
    position: relative;
}

.team-img {
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.team-img-border {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-cyan);
    border-radius: 1rem;
    z-index: -1;
}

.downloads-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .downloads-cta {
        flex-direction: row;
    }
}

.btn .icon {
    margin-right: 0.5rem;
}

/* ===================================
   Legal Pages (Privacy & Terms)
   =================================== */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-hero {
    position: relative;
    width: 100%;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.1), transparent);
}

.legal-header {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.legal-content {
    padding: 3rem 0;
    background-color: var(--bg-primary);
    width: 100%;
    flex-grow: 1;
}

.legal-wrapper {
    display: flex;
    justify-content: center;
}

.legal-article {
    max-width: 64rem;
    width: 100%;
}

.legal-text {
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

.legal-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--neon-cyan);
    transition: opacity 0.3s ease;
}

.legal-link:hover {
    opacity: 0.8;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section-title {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.legal-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}

.refund-policy {
    background-color: rgba(26, 26, 36, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.refund-policy h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.refund-policy p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-cyan), 
            0 0 20px var(--neon-cyan), 
            0 0 30px var(--neon-cyan);
    }
    50% {
        text-shadow: 
            0 0 5px var(--neon-cyan), 
            0 0 10px var(--neon-cyan), 
            0 0 15px var(--neon-cyan);
    }
}

/* ===================================
   Aviso Legal
   =================================== */
   
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: white;
  padding: 20px;
  margin: 10% auto;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  color: #000;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}