/*
Theme Name: EncuentraProp
Theme URI: https://encuentraprop.com.ar
Author: EncuentraProp Team
Author URI: https://encuentraprop.com.ar
Description: Theme profesional para portal inmobiliario con gestión completa de propiedades, roles de usuario (cliente, inmobiliaria, superadmin), búsqueda avanzada, favoritos, CRUD completo y panel de administración. Diseñado con Tailwind CSS y optimizado para producción.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: encuentraprop
Tags: real-estate, properties, tailwind, ajax, dashboard
*/

/* ==========================================================================
   Theme Styles
   ========================================================================== */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f9fafb;
}

/* Utilidades para ocultar scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animaciones */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inputs deshabilitados */
input:disabled,
select:disabled,
textarea:disabled {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

/* Estilos para drag & drop */
.dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropzone:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.dropzone.dragover {
    border-color: #2563eb;
    background-color: #dbeafe;
    transform: scale(1.02);
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Botón AI */
.ai-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
}

.ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .show-mobile {
        display: none !important;
    }
}

/* Print styles */
@media print {

    header,
    footer,
    .no-print {
        display: none !important;
    }
}