/* =================================
   HERO MEJORADO - DISEÑO SUTIL
   ================================= */

.hero-mejorado {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 12px;
    border: 2px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.15);
    position: relative;
    overflow: hidden;
}

/* Link solo para el cuadro de destaque */
.hero-highlight-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-highlight-link:hover {
    transform: translateY(-1px);
}

.hero-highlight-link:hover .hero-highlight {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

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

.hero-mejorado h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-emoji {
    font-size: 2rem;
    display: inline-block;
}

.hero-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1rem;
    text-align: left;
}

.icon-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: #334155;
}

.icon-text .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
    border: 1px solid #fbbf24;
}

.highlight-icon {
    font-size: 1.5rem;
    animation: rotate-icon 4s linear infinite;
}

@keyframes rotate-icon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-highlight strong {
    font-size: 1rem;
    color: #92400e;
}

.hero-cta {
    font-size: 1rem;
    font-weight: 600;
    color: #4f46e5;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mejorado {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-mejorado h1 {
        font-size: 1.5rem;
    }
    
    .hero-emoji {
        font-size: 1.6rem;
    }
    
    .hero-box {
        padding: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-highlight {
        padding: 0.8rem;
    }
    
    .hero-highlight strong {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        font-size: 0.9rem;
    }
}
