/**
 * CAUCHO BORRACHAS - Proteções CSS Básicas
 * Estilos leves de proteção que não impactam a performance
 * Data: Junho/2025
 */

/* ===== PROTEÇÕES BÁSICAS DE IMAGENS ===== */

/* Proteção básica de imagens */
img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* ===== PROTEÇÕES BÁSICAS DE IMPRESSÃO ===== */

@media print {
    /* Adicionar marca d'água básica na impressão */
    body::before {
        content: "© CAUCHO BORRACHAS - Reprodução Proibida";
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        font-size: 48px;
        color: rgba(230, 57, 70, 0.1);
        z-index: 9999;
        pointer-events: none;
        white-space: nowrap;
    }
    
    /* Ocultar navegação na impressão */
    .header,
    .footer,
    .navigation,
    .menu {
        display: none !important;
    }
}

/* ===== PROTEÇÕES BÁSICAS DE SELEÇÃO ===== */

/* Proteção básica do logo */
.logo img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    pointer-events: none !important;
}

/* Permitir seleção em campos de formulário */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    pointer-events: auto !important;
}

/* Permitir interação em links e botões */
a,
button {
    pointer-events: auto !important;
}

