/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #F8BBD0 0%, #FCE4EC 50%, #FFFFFF 100%);
    padding: 2rem;
    padding-top: 80px; /* Espacio para el nav fijo */
    animation: fadeIn 1s ease;
}

.hero-icon {
    margin-bottom: 24px;
    animation: fadeInDown 1s ease;
}

.hero-icon img {
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    animation: fadeInDown 1.2s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    animation: fadeInUp 1.4s ease;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1.6s ease;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}
