/* ============================================
   Hero Section Styles
   ============================================ */

.hero {
    background: #000;
    color: white;
    padding: 6rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 1.5rem;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fde047, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-gray-300);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.hero-cta-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta-container {
        flex-direction: row;
    }
}

.hero-cta-primary {
    display: inline-block;
    background: var(--primary-yellow);
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-decoration: none;
    transition: all 0.2s;
}

.hero-cta-primary:hover {
    background: var(--primary-yellow-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(250 204 21 / 0.1), 0 4px 6px -4px rgb(250 204 21 / 0.1);
}

.hero-cta-secondary {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-decoration: none;
    transition: all 0.2s;
}

.hero-cta-secondary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-4px);
}

.hero-stats {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

.hero-stats strong {
    color: var(--text-white);
}

/* Animaciones del hero */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-container {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}
