/* Estilos Personalizados - Imobiliária Moderna */

/* Importando fonte Outfit do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f97316; /* Orange-500 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c; /* Orange-600 */
}

/* Animações Personalizadas */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Gradiente do Hero */
.hero-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9) 0%, rgba(255, 60, 0, 0.8) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Efeito Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ajustes do Quill.js (se necessário) */
.ql-editor {
    min-height: 150px;
    font-family: 'Outfit', sans-serif;
}
