/* ============================================
   ESTILOS PARA IMPRESIÓN
   ============================================ */

@media print {
    /* Ocultar elementos de navegación */
    .navbar,
    .footer,
    .btn-print,
    .form-navigation,
    .hero-shapes,
    .dropdown-menu {
        display: none !important;
    }
    
    /* Ajustar colores para impresión */
    body {
        background: white;
        color: black;
    }
    
    .form-container,
    .test-question,
    .modulo-card,
    .about-card,
    .equipo-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .form-section-title,
    .section-title {
        color: #000;
        border-bottom-color: #ccc;
    }
    
    .form-label,
    .radio-option label,
    .checkbox-option label {
        color: #333;
    }
    
    .form-input,
    .form-select,
    .form-textarea,
    .radio-option,
    .checkbox-option {
        background: white;
        border: 1px solid #999;
        color: black;
    }
    
    /* Espacio para respuestas escritas */
    .form-input,
    .form-textarea {
        border-bottom: 1px solid #000;
        min-height: 30px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    /* Checkbox y radio buttons */
    .radio-option input[type="radio"],
    .checkbox-option input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #000;
        border-radius: 50%;
        outline: none;
    }
    
    .checkbox-option input[type="checkbox"] {
        border-radius: 3px;
    }
    
    /* Saltos de página */
    .form-section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    /* Encabezado de impresión */
    .print-header {
        display: block !important;
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #000;
    }
    
    .print-header h1 {
        font-size: 18pt;
        margin-bottom: 0.5rem;
    }
    
    .print-header p {
        font-size: 12pt;
        color: #666;
    }
    
    /* Pie de página de impresión */
    .print-footer {
        display: block !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: center;
        font-size: 10pt;
        color: #666;
        border-top: 1px solid #ccc;
        padding-top: 0.5rem;
    }
}
