/** * Hero Section Styles * * RESPONSABILIDAD: Estilos del componente Hero Section * - Contenedor principal con gradiente navy * - Título H1 del post * - Category badges con efecto glassmorphism * * CORRECCIÓN Issue #121: Este archivo estaba vacío (solo comentarios) * diciendo que los estilos estaban en style.css * * Ahora contiene el CSS correcto del template según: * _planeacion/_desarrollo-tema-roi/theme-documentation/08-componente-hero-section/CSS-ESPECIFICO.md * * ELIMINADO: hero-section.css (duplicado con CSS incorrecto) * - hero-section.css usaba clases .hero-section y .hero-category-badge * - El HTML real usa .hero-title y .category-badge * - Se consolidó todo en este archivo con las clases correctas * * @package ROI_Theme * @since 1.0.9 * @source roi-theme-template/css/style.css líneas 186-222 */ /* ======================================== Hero Section ======================================== */ .hero-title { background: linear-gradient(135deg, var(--color-navy-primary) 0%, var(--color-navy-light) 100%); box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25); padding: 3rem 0; } .hero-title h1 { color: #ffffff !important; font-weight: 700; line-height: 1.4; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); margin-bottom: 0; } /* ======================================== Category Badges (Glassmorphism Effect) ======================================== */ .category-badge { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.95); padding: 0.375rem 0.875rem; border-radius: 20px; font-size: 0.813rem; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.3s ease; } .category-badge:hover { background: rgba(255, 133, 0, 0.2); border-color: rgba(255, 133, 0, 0.4); color: #ffffff; } .category-badge i { color: var(--color-orange-light); }