html {
    scroll-behavior: smooth;
}

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

body {
    background: radial-gradient(ellipse at center, #0d0d0d 0%, #000000 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #FFFA00;
    overflow-x: hidden;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}





.hero .title,
.hero .subtitle {
    position: relative;
    z-index: 2;
}

.title {
    color: #FFFA00;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeInUp 1.5s ease-out;
    text-shadow:
        0 0 6px rgba(255, 250, 0, 0.4),
        0 0 12px rgba(255, 250, 0, 0.2);
}

.subtitle {
    color: #FFFA00;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: fadeInUp 2s ease-out;
    text-shadow:
        0 0 4px rgba(255, 250, 0, 0.3);
}

.quienes-somos {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.section-title {
    color: #FFFA00;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-shadow:
        0 0 6px rgba(255, 250, 0, 0.4),
        0 0 12px rgba(255, 250, 0, 0.2);
}

.section-text {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: none;
}

.section-text strong {
    color: #FFFA00;
    font-weight: 700;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 250, 0, 0.15);
    color: rgba(255, 250, 0, 0.7);
    font-size: 0.95rem;
}

.footer-link {
    color: #FFFA00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 250, 0, 0.4);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFFA00;
    border-radius: 50%;
    opacity: 0;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 6px #FFFA00;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; top: 10%; animation-delay: 0.5s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 60%; top: 70%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 70%; top: 30%; animation-delay: 3s; width: 2px; height: 2px; }
.particle:nth-child(7) { left: 80%; top: 90%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; top: 50%; animation-delay: 0.8s; width: 3px; height: 3px; }
.particle:nth-child(9) { left: 15%; top: 60%; animation-delay: 4s; }
.particle:nth-child(10) { left: 85%; top: 15%; animation-delay: 3.5s; width: 2px; height: 2px; }

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 10px #FFFA00,
            0 0 20px #FFFA00,
            0 0 40px #FFFA00,
            0 0 80px rgba(255, 250, 0, 0.6),
            0 0 120px rgba(255, 250, 0, 0.4);
    }
    to {
        text-shadow:
            0 0 20px #FFFA00,
            0 0 40px #FFFA00,
            0 0 60px #FFFA00,
            0 0 100px rgba(255, 250, 0, 0.8),
            0 0 140px rgba(255, 250, 0, 0.6);
    }
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.5);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 250, 0, 0.15);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 250, 0, 0.3));
}

.nav-logo-text {
    color: #FFFA00;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow:
        0 0 4px rgba(255, 250, 0, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-link {
    display: block;
    color: rgba(255, 250, 0, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFA00;
    background: rgba(255, 250, 0, 0.08);
    text-shadow: 0 0 8px rgba(255, 250, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 250, 0, 0.1);
}

.nav-cta {
    border: 1px solid rgba(255, 250, 0, 0.4);
    color: #FFFA00;
}

.nav-cta:hover {
    background: rgba(255, 250, 0, 0.15);
    border-color: #FFFA00;
    box-shadow: 0 0 20px rgba(255, 250, 0, 0.25);
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    border: 1px solid rgba(255, 250, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-item-dropdown:hover .nav-dropdown {
    display: block;
    animation: fadeInUp 0.2s ease-out;
}

.nav-dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 250, 0, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
    background: rgba(255, 250, 0, 0.1);
    color: #FFFA00;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #FFFA00;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(255, 250, 0, 0.4);
}

.hero {
    padding-top: 90px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        border-bottom: 1px solid rgba(255, 250, 0, 0.15);
        padding: 1rem 2rem 2rem;
        gap: 0.3rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
        margin-left: 0;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .hero-image {
        max-width: 280px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-text {
        font-size: 1rem;
    }
}

.hero.hero-no-overlay::after {
    display: none;
}

/* About Page */
.about-page {
    padding: 120px 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-main-img {
    max-width: 100%;
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 250, 0, 0.2);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 250, 0, 0.2);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 250, 0, 0.2);
    border: 2px solid rgba(255, 250, 0, 0.2);
}

.about-features .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    background: rgba(255, 250, 0, 0.05);
    border: 1px solid rgba(255, 250, 0, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 250, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(255, 250, 0, 0.15);
}

.features-list strong {
    color: #FFFA00;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-main-img {
        width: 100%;
    }
    
    .about-features .section-title {
        text-align: center;
    }
}
