/** * CTA Box Sidebar Styles * * Styles for the CTA box component that appears in the sidebar * below the Table of Contents on single posts. * * @package Apus_Theme * @since 1.0.0 */ /* ======================================== CTA Box Container ======================================== */ .cta-box-sidebar { background: linear-gradient(135deg, #FF8600 0%, #FFB800 100%); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 12px rgba(255, 134, 0, 0.3); position: sticky; top: 5.5rem; /* Debajo del TOC sticky */ } /* ======================================== CTA Box Content ======================================== */ .cta-box-title { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; } .cta-box-text { color: rgba(255, 255, 255, 0.95); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; } /* ======================================== CTA Button ======================================== */ .btn-cta-box { background: #ffffff; color: #FF8600; font-weight: 600; padding: 0.75rem; border-radius: 8px; border: none; transition: all 0.3s ease; } .btn-cta-box:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); color: #FF8600; } .btn-cta-box:active { transform: scale(0.98); } .btn-cta-box:focus { outline: 2px solid #ffffff; outline-offset: 2px; } /* ======================================== 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; } }