/* ===================================
   Construtora Kelles Duarte - Main Styles
   =================================== */

:root {
    --primary-color: #0066cc;
    --secondary-color: #333333;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* General Styles */
body {
    font-family: 'Roboto', 'Arial', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--secondary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
    min-height: 500px;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Property Features */
.property-features {
    font-size: 0.9rem;
    color: #666;
}

.property-features i {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    margin-top: 3rem;
}

.site-footer a {
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--primary-color) !important;
}

.site-footer .social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-footer .social-links a:hover {
    transform: scale(1.2);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .top-bar {
        font-size: 0.8rem;
    }
    
    .top-bar .contact-info,
    .top-bar .social-links {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Shadows */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

/* Utilities */
.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255,255,255,0.5) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .cookie-consent {
        display: none !important;
    }
}
