/**
 * Print Styles for Bora Prosperar MKT Theme
 */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .main-navigation,
    .menu-toggle,
    .header-top,
    .cta-button,
    .submit-button,
    .contact-form,
    .site-footer,
    .hero-section::before {
        display: none !important;
    }

    /* Reset colors for print */
    body {
        color: #000;
        background: #fff;
    }

    /* Ensure content is visible */
    .hero-section,
    .services-section {
        background: #fff !important;
        color: #000 !important;
    }

    /* Adjust spacing */
    .section {
        padding: 1rem 0;
    }

    /* Show URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

