/** * CTA Box Sidebar Styles * * Styles for the CTA box component that appears in the sidebar * below the Table of Contents on single posts. * * @package ROI_Theme * @since 1.0.0 */ /* ======================================== CTA Box Container ======================================== */ .cta-box-sidebar { background: var(--color-orange-primary); border-radius: 8px; padding: 24px; text-align: center; margin-top: 0; margin-bottom: 15px; height: 250px; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 4px 12px rgba(255, 133, 0, 0.2); } /* ======================================== CTA Box Content ======================================== */ .cta-box-title { color: #ffffff; font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; } .cta-box-text { color: rgba(255, 255, 255, 0.95); font-size: 0.9rem; margin-bottom: 1rem; } /* ======================================== CTA Button ======================================== */ .btn-cta-box { background-color: #ffffff; color: var(--color-orange-primary); font-weight: 700; border: none; padding: 0.75rem 1.5rem; border-radius: 8px; transition: all 0.3s ease; font-size: 1rem; } .btn-cta-box:hover { background-color: var(--color-navy-primary); color: #ffffff; } /* ======================================== Icon Spacing ======================================== */ .btn-cta-box i { vertical-align: middle; } /* ======================================== Responsive Design ======================================== */ /* Hide on tablets and mobile */ @media (max-width: 991px) { .cta-box-sidebar { display: none; /* Ocultar en móviles */ } } /* ======================================== Print Styles ======================================== */ @media print { .cta-box-sidebar { display: none; } }