/** * Buttons Styles * * RESPONSABILIDAD: Estilos de botones personalizados del tema * - Botón Let's Talk (navbar) * - Otros botones custom del tema * * REACTIVADO: Issue #121 - Arquitectura de separación de componentes * El CSS NO debe estar en style.css sino en archivos individuales * * @package ROI_Theme * @since 1.0.7 */ /* ======================================== Botón Let's Talk (Navbar) ======================================== */ .btn-lets-talk { background-color: var(--color-orange-primary) !important; color: #ffffff !important; font-weight: 600; padding: 0.5rem 1.5rem; border: none; border-radius: 6px; transition: all 0.3s ease; } .btn-lets-talk:hover { background-color: var(--color-orange-hover) !important; color: #ffffff !important; } .btn-lets-talk i { color: #ffffff; }