/** * Hero Section Styles * * Estilos para la sección hero con gradiente azul * Template ref: css/style.css líneas 122-129 * * @package Apus_Theme * @since 1.0.0 */ /* ============================================ HERO SECTION - GRADIENTE AZUL ============================================ */ .hero-title { background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%); box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25); } .hero-title h1 { color: #ffffff !important; font-weight: 700; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } /* Category Badges en Hero */ .category-badge-hero { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: #ffffff; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.3s ease; } .category-badge-hero:hover { background: rgba(255, 255, 255, 0.25); color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .category-badge-hero i { font-size: 12px; } /* Responsive */ @media (max-width: 767.98px) { .hero-title { padding-top: 3rem !important; padding-bottom: 3rem !important; } .hero-title h1 { font-size: 1.75rem !important; } .category-badge-hero { font-size: 12px; padding: 4px 12px; } }