/* Elementor Bot Blocker Plugin CSS */

/* Honeypot Fields */
.ebb-honeypot {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.ebb-honeypot input,
.ebb-honeypot label {
    display: none !important;
    visibility: hidden !important;
}

/* Hidden bot fields */
.ebb-hidden-bot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Prevenir inspección */
.elementor-form input:focus,
.elementor-form textarea:focus {
    outline: 2px solid transparent;
}

/* Form protection notification */
.ebb-form-protection {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Success message styling */
.ebb-success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Error message styling */
.ebb-error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Loading animation */
.ebb-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 115, 170, 0.3);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: ebb-spin 0.8s linear infinite;
}

@keyframes ebb-spin {
    to { transform: rotate(360deg); }
}

/* Form submission protection indicator */
.ebb-form-protected {
    position: relative;
}

.ebb-form-protected::before {
    content: "🔒";
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .ebb-honeypot {
        display: none !important;
    }
}

/* Print styles */
@media print {
    .ebb-honeypot,
    .ebb-hidden-bot-field {
        display: none !important;
    }
}
