@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/*
==============================================
  TEMA SOFISTICADO IMOBCLOUD - PADRÃO DO SITE
==============================================
*/

:root {
    --imob-font-family: 'Inter', sans-serif;
    --imob-color-background: #FFFFFF;
    --imob-color-surface: #F7FAFC;
    --imob-color-text-primary: #1A202C;
    --imob-color-text-secondary: #718096;
    --imob-color-border: #E2E8F0;
    --imob-color-accent: #00B07A;
    --imob-color-accent-dark: #008A5E;
    --imob-color-accent-soft: rgba(0, 176, 122, 0.25);
    --imob-gradient-accent: linear-gradient(135deg, #00B07A, #008A5E);
    --imob-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --imob-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --imob-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --imob-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --imob-radius-md: 12px;
    --imob-radius-lg: 16px;
    --imob-radius-full: 999px;
    
    /* Atlas Variables - Compatibilidade */
    --atlas-primary: #2563eb;
    --atlas-primary-light: #3b82f6;
    --atlas-primary-dark: #1d4ed8;
    --atlas-white: #ffffff;
    --atlas-gray-50: #f8fafc;
    --atlas-gray-200: #e2e8f0;
    --atlas-gray-600: #475569;
    --atlas-gray-700: #334155;
    --atlas-gray-900: #0f172a;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.imob-site-page {
    font-family: var(--imob-font-family);
    background-color: var(--imob-color-background);
    color: var(--imob-color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Espaço para o header fixo */
}

.imob-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/*
==============================================
  ESTILOS ANTIGOS E PAINEL ADMIN
==============================================
*/

/* Site Settings Styles */
.settings-container {
    padding: 0;
}

.settings-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 176, 122, 0.1);
    border: 1px solid rgba(0, 176, 122, 0.1);
    flex-wrap: wrap;
    gap: 4px;
}

.tab-button {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.tab-button:hover {
    background: rgba(0, 176, 122, 0.1);
    color: #00B07A;
}

.tab-button.active {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 176, 122, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 176, 122, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    color: #00B07A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h4 i {
    font-size: 1rem;
}

/* Form Grid Layouts */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 176, 122, 0.1);
}

.value-item h5 {
    color: #00B07A;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Image Upload Groups */
.image-upload-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.image-upload-group input[type="url"] {
    flex: 1;
}

.image-upload-group .btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 14px;
}

.image-preview {
    margin-top: 8px;
    text-align: center;
}

.image-preview img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Color Settings */
.color-settings {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 176, 122, 0.1);
}

.color-settings h4 {
    color: #00B07A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-group {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 176, 122, 0.1);
}

.color-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.color-input-group input[type="color"] {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: none;
}

.color-input-group input[type="text"] {
    flex: 1;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.color-preview {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 176, 122, 0.1);
    margin-top: 1.5rem;
}

.color-preview h5 {
    color: #00B07A;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preview-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.preview-btn.primary {
    background: #00B07A;
}

.preview-btn.secondary {
    background: #008A5E;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.preview-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #00B07A;
}

.preview-card h6 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.preview-card p {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 14px;
}

.preview-link {
    color: #00B07A;
    text-decoration: none;
    font-weight: 500;
}

.preview-link:hover {
    text-decoration: underline;
}

/* Form Groups */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-button {
        min-width: auto;
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .color-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-upload-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .image-upload-group .btn {
        width: 100%;
    }
    
    .color-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .color-input-group input[type="color"] {
        width: 100%;
        height: 50px;
    }
    
    .preview-elements {
        gap: 0.5rem;
    }
}

.settings-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 176, 122, 0.1);
    border: 1px solid rgba(0, 176, 122, 0.1);
    transition: all 0.3s ease;
}

.settings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 176, 122, 0.15);
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 176, 122, 0.1);
}

.card-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h3 i {
    color: #00B07A;
    font-size: 1.3rem;
}

.card-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 176, 122, 0.2);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.1);
    background: white;
}

.color-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.color-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.color-input-group input[type="color"] {
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.color-input-group input[type="text"] {
    flex: 1;
    font-family: monospace;
    text-transform: uppercase;
}

.color-group small {
    color: #64748b;
    font-size: 0.85rem;
}

.color-preview {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(0, 176, 122, 0.1);
}

.color-preview h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.preview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.preview-card h5 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.preview-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.preview-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-link:hover {
    text-decoration: underline;
}

.testimonials-manager {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-item {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(0, 176, 122, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: rgba(0, 176, 122, 0.3);
    transform: translateY(-2px);
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00B07A;
}

.testimonial-info h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 176, 122, 0.1);
    color: #00B07A;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: #00B07A;
    color: white;
    transform: translateY(-2px);
}

.btn-icon.delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-icon.delete:hover {
    background: #ef4444;
    color: white;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 176, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 122, 0.4);
}

.btn-outline {
    background: transparent;
    color: #00B07A;
    border: 2px solid #00B07A;
}

.btn-outline:hover {
    background: #00B07A;
    color: white;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(0, 176, 122, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #1e293b;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.modal-body {
    padding: 1rem 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.rating-input {
    display: flex;
    gap: 4px;
}

.rating-input .star {
    font-size: 24px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-input .star:hover,
.rating-input .star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    z-index: 10001;
    transform: translateX(400px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .tab-button {
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .color-settings {
        grid-template-columns: 1fr;
    }
    
    .color-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .testimonial-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-actions {
        align-self: flex-end;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.atlas-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid var(--imob-color-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.header-logo-link:hover {
    transform: scale(1.02);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-logo-link:hover .logo-icon::after {
    opacity: 0.3;
}

.header-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-text {
    transition: all 0.3s ease;
}

.nav-indicator {
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text {
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-link:hover .nav-indicator {
    width: 20px;
}

.nav-link.active .nav-indicator {
    width: 30px;
}

.header-cta {
    margin-left: 1rem;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #475569;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section Sofisticado */
.hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: var(--imob-color-surface);
    border-bottom: 1px solid var(--imob-color-border);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--imob-color-text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-title .title-highlight {
    color: var(--imob-color-accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--imob-color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Filtro de Busca Sofisticado */
.hero-search-filter {
    background-color: var(--imob-color-background);
    border-radius: var(--imob-radius-lg);
    padding: 24px;
    box-shadow: var(--imob-shadow-lg);
    border: 1px solid var(--imob-color-border);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    text-align: left;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--imob-color-text-secondary);
    margin-bottom: 8px;
}

.filter-group .filter-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--imob-color-border);
    border-radius: var(--imob-radius-md);
    background-color: var(--imob-color-background);
    font-size: 16px;
    color: var(--imob-color-text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23718096%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}

.filter-group .filter-select:focus {
    outline: none;
    border-color: var(--imob-color-accent);
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.2);
}

.filter-button {
    background-color: var(--imob-color-accent);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--imob-radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.filter-button:hover {
    background-color: var(--imob-color-accent-dark);
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .filter-form {
        grid-template-columns: repeat(4, 1fr) auto;
    }
    .filter-button {
        width: auto;
    }
}

/* ImobCloud Homepage Enhancements */
/* Hero visual refinements and floating WhatsApp button */

/* Hero: gradient accent on highlight and subtle background glow */
.hero-title .title-highlight {
    background: var(--imob-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -80px -40px auto -40px;
    height: 300px;
    background: radial-gradient(1200px 300px at 50% 0%, rgba(0,176,122,0.12), rgba(0,176,122,0) 60%);
    pointer-events: none;
}

.hero-search-filter {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 176, 122, 0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.filter-group .filter-select {
    border-color: var(--imob-color-border);
}

.filter-group .filter-select:hover {
    border-color: var(--imob-color-accent-soft);
}

.filter-button {
    background: var(--imob-gradient-accent);
    box-shadow: 0 8px 20px rgba(0, 176, 122, 0.25);
}

.filter-button:hover {
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(255,255,255,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1000;
}

.floating-whatsapp i {
    font-size: 24px;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp:active {
    transform: translateY(-1px);
}

.search-btn i {
    font-size: 1rem;
}

/*
==============================================
  PAGINAÇÃO ESTILO ATLAS
==============================================
*/

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 4rem;
    padding: 1rem;
    flex-wrap: wrap;
}

.page-btn, .page-number {
    border: 1px solid var(--atlas-gray-200, #e2e8f0);
    background-color: var(--atlas-white, #ffffff);
    color: var(--atlas-primary, #2563eb);
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.page-btn:hover, .page-number:hover {
    border-color: var(--atlas-primary-light, #3b82f6);
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.page-number.active {
    background-color: var(--atlas-primary, #2563eb);
    border-color: var(--atlas-primary, #2563eb);
    color: var(--atlas-white, #ffffff);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.page-btn:disabled {
    background-color: var(--atlas-gray-50, #f8fafc);
    color: var(--atlas-gray-600, #475569);
    border-color: var(--atlas-gray-200, #e2e8f0);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: var(--atlas-gray-600, #475569);
    font-weight: 600;
}

/* Seção de Imóveis em Destaque (Sofisticado) */
.featured-properties {
    padding: 80px 0;
    background-color: var(--imob-color-background);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--imob-color-surface);
    color: var(--imob-color-text-secondary);
    border: 1px solid var(--imob-color-border);
    padding: 10px 20px;
    border-radius: var(--imob-radius-full);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--imob-color-border);
    color: var(--imob-color-text-primary);
}

.filter-btn.active {
    background-color: var(--imob-color-accent);
    color: white;
    border-color: var(--imob-color-accent);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background-color: var(--imob-color-surface);
    border-radius: var(--imob-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--imob-color-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: var(--imob-color-accent-soft);
}

.property-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image-wrapper img {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.badge-type, .badge-featured {
    background-color: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 12px;
    border-radius: var(--imob-radius-md);
    font-size: 13px;
    font-weight: 600;
}

.badge-featured {
    background-color: var(--imob-color-accent);
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.property-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--imob-color-text-primary);
    margin: 0;
}

.property-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--imob-color-accent);
    white-space: nowrap;
    margin-left: 16px;
}

.property-location {
    font-size: 15px;
    color: var(--imob-color-text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-features {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--imob-color-border);
    border-bottom: 1px solid var(--imob-color-border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--imob-color-text-secondary);
}

.feature i {
    color: var(--imob-color-accent);
}

.property-actions {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    gap: 12px;
}

.btn-details, .btn-contact {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: var(--imob-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details {
    background-color: var(--imob-color-accent);
    color: white;
}

.btn-details:hover {
    background-color: var(--imob-color-accent-dark);
    transform: translateY(-2px);
}

.btn-contact {
    background-color: var(--imob-color-surface);
    color: var(--imob-color-text-primary);
    border: 1px solid var(--imob-color-border);
}

.btn-contact:hover {
    background-color: var(--imob-color-border);
    transform: translateY(-2px);
}

/* Grid de Imóveis (Sofisticado) */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.property-card {
    background-color: var(--imob-color-background);
    border-radius: var(--imob-radius-lg);
    overflow: hidden;
    border: 1px solid var(--imob-color-border);
    box-shadow: var(--imob-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--imob-shadow-lg);
}

.property-image {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin: 0;
    padding: 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease-out;
    display: block;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.badge-type, .badge-featured {
    background-color: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 12px;
    border-radius: var(--imob-radius-md);
    font-size: 13px;
    font-weight: 600;
}

.badge-featured {
    background-color: var(--imob-color-accent);
}

.property-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.property-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--imob-color-text-primary);
    margin: 0;
}

.property-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--imob-color-accent);
    white-space: nowrap;
    margin-left: 16px;
}

.property-location {
    font-size: 15px;
    color: var(--imob-color-text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-features {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--imob-color-border);
    border-bottom: 1px solid var(--imob-color-border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--imob-color-text-secondary);
}

.feature i {
    color: var(--imob-color-accent);
}

.property-actions {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    gap: 12px;
}

.btn-details, .btn-contact {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: var(--imob-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details {
    background-color: var(--imob-color-accent);
    color: white;
}

.btn-details:hover {
    background-color: var(--imob-color-accent-dark);
    transform: translateY(-2px);
}

.btn-contact {
    background-color: var(--imob-color-surface);
    color: var(--imob-color-text-primary);
    border: 1px solid var(--imob-color-border);
}

.btn-contact:hover {
    background-color: var(--imob-color-border);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="testimonial-grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonial-grid)"/></svg>');
}

.testimonials-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(96,165,250,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.testimonials-section .section-header {
    color: white;
    margin-bottom: 4rem;
}

.testimonials-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    display: flex;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    margin: 0 3px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar-wrapper {
    position: relative;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .avatar-ring {
    opacity: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}


/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: white;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Footer */
.imob-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #60a5fa;
}

.contact-item i {
    color: #60a5fa;
    width: 1.25rem;
    text-align: center;
}

.footer-certificates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.certificate-item:hover {
    color: #60a5fa;
}

.certificate-item i {
    color: #60a5fa;
    width: 1.25rem;
    text-align: center;
}

.certificate-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.certificate-link:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #60a5fa;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

.copyright-link {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: white;
}

.admin-panel-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 0.875rem;
}

.admin-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.imob-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.75rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-certificates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.certificate-item i {
    color: #60a5fa;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.certificate-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.certificate-link:hover {
    color: #60a5fa;
}

.certificate-link:hover i {
    color: #60a5fa;
    transform: scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    color: #60a5fa;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright-link {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: #93c5fd;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #60a5fa;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.admin-panel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.admin-panel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-btn {
        width: 100%;
        justify-self: stretch;
    }
    
    .search-filter {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .header-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-filter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .search-btn {
        min-width: 100%;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features {
        justify-content: space-between;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright {
        align-items: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-filter {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1rem;
    }
    
    .property-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00B07A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008A5E;
}

/* Kanban Board Styles */
.kanban-board {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    min-height: 75vh;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.kanban-board::-webkit-scrollbar {
    height: 8px;
}

.kanban-board::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 1rem;
}

.kanban-board::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00B07A, #008A5E);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.kanban-board::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #008A5E, #006B47);
    background-clip: content-box;
}

.kanban-column {
    flex: 0 0 320px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(0, 176, 122, 0.15);
    padding: 1.75rem;
    min-height: 650px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 176, 122, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.kanban-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B07A, #008A5E, #00B07A);
    border-radius: 20px 20px 0 0;
    opacity: 0.8;
}

.kanban-column:hover {
    border-color: rgba(0, 176, 122, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 176, 122, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.kanban-column:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, #00B07A, #25D366, #00B07A);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(0, 176, 122, 0.15);
    position: relative;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00B07A, #25D366);
    border-radius: 2px;
}

.column-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 176, 122, 0.1);
}

.column-header h3 i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #00B07A, #25D366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 176, 122, 0.2));
}

.stage-count {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
    box-shadow: 
        0 4px 12px rgba(0, 176, 122, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stage-count:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 16px rgba(0, 176, 122, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.15);
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 520px;
    padding: 0.75rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

.column-content.drag-over {
    background: linear-gradient(135deg, rgba(0, 176, 122, 0.15), rgba(37, 211, 102, 0.1));
    border: 2px dashed #00B07A;
    border-radius: 16px;
    transform: scale(1.02);
    box-shadow: 
        0 8px 32px rgba(0, 176, 122, 0.2),
        inset 0 2px 8px rgba(0, 176, 122, 0.1);
}

.lead-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 176, 122, 0.15);
    cursor: grab;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 176, 122, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.lead-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00B07A, #25D366, #00B07A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lead-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 176, 122, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 176, 122, 0.3);
}

.lead-card:hover::before {
    opacity: 1;
}

.lead-card:active {
    cursor: grabbing;
    transform: scale(0.98);
}

.lead-card.dragging {
    opacity: 0.7;
    transform: rotate(8deg) scale(1.05);
    z-index: 1000;
    box-shadow: 
        0 20px 60px rgba(0, 176, 122, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.lead-card.closed {
    background: linear-gradient(145deg, rgba(0, 176, 122, 0.08), rgba(0, 138, 94, 0.05));
    border-color: rgba(0, 176, 122, 0.3);
}

.lead-card.closed::before {
    opacity: 1;
    background: linear-gradient(90deg, #00B07A, #008A5E);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 20px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover::before {
    width: 100%;
    height: 100%;
}

.whatsapp-btn:active {
    transform: scale(1.05);
}

.card-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 176, 122, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 176, 122, 0.1);
}

.card-phone i {
    color: #00B07A;
    width: 18px;
    font-size: 1rem;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
    letter-spacing: -0.02em;
    padding: 0.5rem 0.75rem;
    background-color: rgba(0, 176, 122, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 176, 122, 0.1);
    margin-top: 0.5rem;
}

/* Responsive Kanban */
@media (max-width: 1400px) {
    .kanban-column {
        flex: 0 0 300px;
    }
}

@media (max-width: 968px) {
    .kanban-column {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .column-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .kanban-board {
        gap: 1.5rem;
        padding: 1rem 0.25rem 2rem 0.25rem;
    }
    
    .kanban-column {
        flex: 0 0 260px;
        min-height: auto;
        padding: 1.25rem;
    }
    
    .column-content {
        min-height: 400px;
    }
    
    .lead-card {
        padding: 1.25rem;
    }
    
    .whatsapp-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Properties Admin Page Styles */
.properties-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.controls-right {
    display: flex;
    gap: 1rem;
}

.search-box {
    position: relative;
    min-width: 300px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid rgba(0, 176, 122, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.1);
}

.filter-group {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 176, 122, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.1);
}

.properties-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-admin-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 176, 122, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 176, 122, 0.1);
}

.property-admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 176, 122, 0.15);
}

.property-admin-card .property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-admin-card .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-admin-card:hover .property-image img {
    transform: scale(1.05);
}

.property-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-status.ativo {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
}

.property-status.inativo {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.property-status.vendido {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

.property-admin-card .property-details {
    padding: 1.5rem;
}

.property-admin-card .property-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.property-admin-card .property-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 1rem;
}

.property-admin-card .property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.property-admin-card .property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.property-admin-card .property-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.property-admin-card .property-features .feature i {
    color: #00B07A;
    font-size: 1rem;
}

.property-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn-action {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-action.view {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-action.edit {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
}

.btn-action.duplicate {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-action.delete {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 176, 122, 0.1);
}

.pagination-info {
    color: #64748b;
    font-size: 0.95rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 176, 122, 0.1);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-btn:hover,
.page-btn.active {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    border-color: #00B07A;
    color: white;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 176, 122, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 176, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00B07A;
}

.modal-close:hover {
    background: #00B07A;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(0, 176, 122, 0.1);
}

.property-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.property-form .form-group {
    margin-bottom: 1rem;
}

.property-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.property-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 176, 122, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.property-form .form-control:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00B07A;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 300px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #00B07A;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.info {
    border-left-color: #3b82f6;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon {
    color: #00B07A;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.info .toast-icon {
    color: #3b82f6;
}

.toast-message {
    font-weight: 500;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .properties-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .controls-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .filter-group {
        flex-wrap: wrap;
    }
    
    .properties-admin-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}

/* Properties Page Styles */
.properties-hero {
    padding: 4rem 0 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

/* Filter Section */
.filter-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    z-index: 999;
    margin-top: 80px; /* Espaço para o header fixo */
}

.filter-controls {
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.btn-filter {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-filter:hover::before {
    left: 100%;
}

.btn-filter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-filter i {
    font-size: 1.1rem;
}

/* Filter Modal */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.filter-modal.show {
    display: flex;
}

.filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.filter-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.filter-modal-title i {
    color: #2563eb;
}

.filter-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.filter-modal-form {
    padding: 2rem;
}

.filter-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.filter-section-group {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.filter-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    border-radius: 2px;
}

.filter-modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-apply-filters {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 1rem;
}

.btn-apply-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    margin-left: 0;
    padding-left: 0;
}

.breadcrumb .container {
    padding-left: 2rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* ===== PROPERTY SINGLE PAGE STYLES ===== */

/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-nav a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #2563eb;
}

.breadcrumb-nav i {
    color: #94a3b8;
    font-size: 0.75rem;
}

.breadcrumb-nav span {
    color: #475569;
    font-weight: 500;
}

/* Property Gallery */
.property-gallery {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2563eb;
    font-size: 1.2rem;
}

.gallery-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.gallery-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.more-photos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Property Details */
.property-details {
    padding: 4rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-info {
    background: white;
}

.property-header {
    margin-bottom: 2rem;
}

.property-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 1.1rem;
}

.property-location i {
    color: #2563eb;
}

.property-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.property-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.featured-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.feature i {
    color: #2563eb;
    font-size: 1.2rem;
}

.property-description {
    margin-bottom: 3rem;
}

.property-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.property-description p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.property-amenities h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.amenity:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.amenity i {
    color: #2563eb;
    font-size: 1.2rem;
}

.amenity span {
    color: #475569;
    font-weight: 500;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Property Actions - Discrete */
.property-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.action-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.action-btn-small i {
    color: #475569;
    font-size: 0.875rem;
}

.action-btn-small:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.action-btn-small:hover i {
    color: white;
}

.action-btn-small.favorite-btn.active {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.favorite-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
    color: white;
}

.favorite-btn.active i {
    color: white;
}

/* Similar Properties */
.similar-properties {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.similar-properties .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-sidebar {
        position: static;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .property-title {
        font-size: 2rem;
    }
    
    .property-price .price {
        font-size: 1.5rem;
    }
    
    .property-features {
        gap: 1rem;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-image {
        height: 300px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .property-details {
        padding: 2rem 0;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Advanced Search Styles */
.advanced-search {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.search-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.search-title i {
    color: #2563eb;
}

.search-toggle {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-toggle:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.search-toggle i {
    transition: transform 0.3s ease;
}

.search-toggle.active i {
    transform: rotate(180deg);
}

.search-form {
    padding: 2rem;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-row:last-of-type {
    margin-bottom: 0;
}

.advanced-filters {
    display: none;
    animation: slideDown 0.3s ease;
}

.advanced-filters.show {
    display: grid;
}

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

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.filter-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: #1e293b;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.price-input {
    position: relative;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-clear {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.2);
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.btn-search {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Properties Results Styles */
.properties-results {
    padding: 4rem 0;
    background: white;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.results-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.results-count {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.view-toggle {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    background: white;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sort-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #1e293b;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Property Cards - Padrão Exato da Homepage */
.property-card {
    background: var(--atlas-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(29, 78, 216, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.property-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.2);
}

.property-card:hover::before {
    opacity: 1;
}

.property-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.property-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.badge-type,
.badge-featured {
    padding: 0.25rem 0.75rem;
    border-radius: var(--atlas-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-type {
    background: rgba(0, 0, 0, 0.6);
    color: var(--atlas-white);
}

.badge-featured {
    background: linear-gradient(135deg, var(--atlas-primary), var(--atlas-primary-dark));
    color: var(--atlas-white);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.badge-featured:hover::before {
    left: 100%;
}

.badge-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.overlay-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.action-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.image-gallery-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-header {
    margin-bottom: 1rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    line-height: 1.3;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.property-footer {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp,
.btn-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--atlas-success) 0%, #059669 100%);
    color: var(--atlas-white);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-details {
    background: linear-gradient(135deg, var(--atlas-white) 0%, #f8fafc 100%);
    color: var(--atlas-primary);
    border: 2px solid var(--atlas-primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.btn-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.btn-details:hover::before {
    left: 100%;
}

.btn-details:hover {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, var(--atlas-primary-dark) 100%);
    color: var(--atlas-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex !important;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.pagination {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    visibility: visible !important;
}

.page-btn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    visibility: visible !important;
}

.page-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-numbers {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    visibility: visible !important;
}

.page-number {
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: white !important;
    color: #2563eb !important;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    visibility: visible !important;
}

.page-number:hover {
    background: #2563eb !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.page-number.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.page-dots {
    color: #64748b;
    font-weight: 600;
    padding: 0 0.5rem;
    user-select: none;
}

/* List View Styles */
.properties-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.properties-grid.list-view .property-card {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: auto;
    min-height: 220px;
    border-radius: 16px;
}

.properties-grid.list-view .property-image {
    width: 320px;
    min-width: 320px;
    height: 220px;
    border-radius: 16px 0 0 16px;
    flex-shrink: 0;
}

.properties-grid.list-view .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

.properties-grid.list-view .property-content {
    flex: 1;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.properties-grid.list-view .property-header {
    margin-bottom: 0;
}

.properties-grid.list-view .property-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.properties-grid.list-view .property-price {
    font-size: 1.875rem;
    margin-bottom: 0;
    font-weight: 800;
}

.properties-grid.list-view .property-location {
    margin-bottom: 0;
    font-size: 1rem;
    color: #64748b;
}

.properties-grid.list-view .property-features {
    margin-bottom: 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.properties-grid.list-view .property-features .feature {
    font-size: 0.95rem;
    padding: 0.625rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 25px;
    color: #2563eb;
    font-weight: 600;
}

.properties-grid.list-view .property-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    color: #475569;
}

.properties-grid.list-view .property-actions {
    margin-top: 0;
    gap: 1rem;
    max-width: none;
    display: flex;
    flex-direction: row;
}

.properties-grid.list-view .btn-contact,
.properties-grid.list-view .btn-details {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    flex: 1;
    max-width: 180px;
}

/* Mobile Responsive for Properties Page */
@media (max-width: 768px) {
    .properties-hero {
        padding: 6rem 0 3rem;
    }
    
    .search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .results-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .properties-grid.list-view .property-card {
        flex-direction: column;
    }
    
    .properties-grid.list-view .property-image {
        width: 100%;
        height: 250px;
    }
    
    .properties-grid.list-view .property-content {
        padding: 1.5rem;
    }
    
    .properties-grid.list-view .property-actions {
        max-width: none;
    }
    
    .pagination {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .page-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .page-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .page-numbers {
        gap: 0.25rem;
    }
    
    .page-numbers {
        order: -1;
        margin-bottom: 1rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.value-description {
    color: #64748b;
    line-height: 1.6;
}

.mission-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.service-features i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.member-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #2563eb;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 1rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-item:hover {
    color: #2563eb;
}

.breadcrumb-item.active {
    color: #2563eb;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #94a3b8;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-content p {
    color: #64748b;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.125rem;
    border: 2px dashed #cbd5e1;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #2563eb;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-subtitle {
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-icon {
    position: absolute;
    left: 0.875rem;
    top: 2.375rem;
    color: #9ca3af;
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-left: 1rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.privacy-link {
    color: #2563eb;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-subtitle {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.method-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.method-text {
    color: #64748b;
    line-height: 1.6;
}

.method-text a {
    color: #2563eb;
    text-decoration: none;
}

.method-text a:hover {
    text-decoration: underline;
}

.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-link {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.social-links .social-link:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.social-links .social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.map-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    color: #64748b;
}

.map-content i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.map-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-page {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 50%, #006B47 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.login-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ===== CENTERED LOGIN PAGE STYLES ===== */
.login-page-centered {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.login-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 50%, #006B47 100%);
    z-index: 0;
}

.login-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

.login-centered-container {
    display: flex;
    height: calc(100vh - 60px);
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    gap: 3rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-logo-centered {
    text-align: center;
    margin-bottom: 0.75rem;
}

.login-logo-centered a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.login-logo-centered a:hover {
    transform: scale(1.05);
}

.logo-img-centered {
    height: 40px;
    width: auto;
    filter: none;
    box-shadow: none;
    border: none;
}

.login-form-centered {
    width: 100%;
}

.login-title-centered {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle-centered {
    color: #64748b;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group-centered {
    margin-bottom: 0.5rem;
}

.form-label-centered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.form-label-centered i {
    color: #00B07A;
    font-size: 0.9rem;
}

.form-input-centered {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.form-input-centered:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.15);
    background: rgba(255, 255, 255, 1);
}

.password-input-wrapper-centered {
    position: relative;
}

.password-toggle-centered {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle-centered:hover {
    color: #00B07A;
}

.form-options-centered {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-container-centered {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-container-centered input {
    display: none;
}

.checkmark-centered {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container-centered input:checked + .checkmark-centered {
    background: #00B07A;
    border-color: #00B07A;
}

.checkbox-container-centered input:checked + .checkmark-centered::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password-centered {
    color: #00B07A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-centered:hover {
    color: #008A5E;
    text-decoration: underline;
}

.login-btn-centered {
    width: 100%;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.login-btn-centered:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 189, 102, 0.3);
}

.social-login-centered {
    margin-top: 1rem;
}

.divider-centered {
    text-align: center;
    margin: 1rem 0;
    position: relative;
    color: #6b7280;
    font-size: 0.85rem;
}

.divider-centered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.divider-centered span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.social-buttons-centered {
    display: flex;
    gap: 0.75rem;
}

.social-btn-centered {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.google-btn-centered:hover {
    border-color: #ea4335;
    color: #ea4335;
    background: rgba(234, 67, 53, 0.05);
}

.facebook-btn-centered:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}

.register-link-centered {
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.register-link-centered p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.register-link-centered a {
    color: #00B07A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link-centered a:hover {
    color: #008A5E;
    text-decoration: underline;
}

.features-section-right {
    flex: 1;
    max-width: 450px;
    color: white;
    padding: 1.5rem;
}

.features-content-right {
    max-width: 400px;
}

.features-title-right {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle-right {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.features-list-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-right {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.feature-icon-right i {
    font-size: 1.2rem;
    color: white;
}

.feature-content-right h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.feature-content-right p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive Design for Centered Login */
@media (max-width: 1024px) {
    .login-centered-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    
    .features-section-right {
        order: -1;
        text-align: center;
        padding: 1rem;
    }
    
    .features-content-right {
        max-width: 100%;
    }
    
    .features-title-right {
        font-size: 1.8rem;
    }
    
    .features-list-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .feature-item-right {
        flex-direction: column;
        text-align: center;
        max-width: 200px;
    }
}

/* Footer Styles */
.login-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.login-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
        margin: 0.5rem;
        max-width: 100%;
        max-height: calc(100vh - 140px);
    }
    
    .features-section-right {
        display: none;
    }
    
    .login-centered-container {
        padding: 0.5rem;
        justify-content: center;
        height: calc(100vh - 80px);
    }
    
    .login-footer {
        padding: 0.75rem;
    }
    
    .login-footer p {
        font-size: 0.8rem;
    }
}

.login-form-section {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00B07A, #028a47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-label i {
    color: #00B07A;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #00B07A;
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #00B07A;
}

.form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #00B07A;
}

.checkbox-container input:checked ~ .checkmark {
    background: #00B07A;
    border-color: #00B07A;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.forgot-password {
    color: #00B07A;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #028a47;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(3, 189, 102, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 189, 102, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.social-login {
    margin-top: 2rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-btn {
    color: #4285f4;
}

.google-btn:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.05);
}

.facebook-btn {
    color: #1877f2;
}

.facebook-btn:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.register-link p {
    color: #6b7280;
    font-size: 0.875rem;
}

.register-link a {
    color: #00B07A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #028a47;
    text-decoration: underline;
}

.login-features-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.features-content {
    max-width: 500px;
    color: white;
}

.features-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.features-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.features-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    opacity: 0.85;
    line-height: 1.4;
    font-size: 0.9rem;
}

.features-footer {
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInLogo 0.8s ease-out forwards;
}

.progress-container {
    width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    width: 0%;
    transition: width 3s ease-out;
}

.progress-fill.animate {
    width: 100%;
}

@keyframes fadeInLogo {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    color: #00B07A;
    font-size: 1.25rem;
}

.toast-message {
    font-weight: 500;
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-form-section {
        flex: 0 0 350px;
    }
    
    .features-header h2 {
        font-size: 1.75rem;
    }
    
    .features-list {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-form-section {
        flex: none;
        max-width: none;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .login-features-section {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .login-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .features-header {
        margin-bottom: 1.5rem;
    }
    
    .features-header h2 {
        font-size: 1.5rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .login-form-section {
        padding: 1rem;
    }
    
    .login-form-container {
        padding: 1.25rem;
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .features-content {
        max-width: none;
    }
    
    .features-header h2 {
        font-size: 1.25rem;
    }
    
    .features-header p {
        font-size: 0.9rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

/* ===== PAGE TRANSITIONS ===== */
body.page-transitioning {
    opacity: 0.8;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* ===== LOADING STATES ===== */
.btn-primary.loading,
.login-btn-centered.loading,
.login-btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.menu-link:focus,
.btn-primary:focus,
.form-input:focus,
.form-input-centered:focus {
    outline: 2px solid #00B07A;
    outline-offset: 2px;
}

.menu-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 176, 122, 0.3);
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 100%);
    min-height: 100vh;
    display: flex;
}

.dashboard-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0, 176, 122, 0.15);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 176, 122, 0.1);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 176, 122, 0.15);
    background: linear-gradient(135deg, rgba(0, 176, 122, 0.05), rgba(255, 255, 255, 0.8));
}

.sidebar-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
}

.sidebar-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.menu-item {
    margin: 0.25rem 0;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.menu-link:hover {
    background: rgba(0, 176, 122, 0.1);
    color: #00B07A;
    transform: translateX(5px);
}

.menu-item.active .menu-link {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 176, 122, 0.4);
    border-radius: 0 25px 25px 0;
    margin-right: 1rem;
}

.menu-link i {
    width: 20px;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.menu-item.logout {
    margin-top: auto;
    border-top: 1px solid rgba(0, 176, 122, 0.15);
    padding-top: 1rem;
}

.menu-item.logout .menu-link {
    color: #ef4444;
}

.menu-item.logout .menu-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dashboard-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 176, 122, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 176, 122, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #00B07A;
    cursor: pointer;
}

.page-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00B07A;
}

.user-name {
    font-weight: 500;
    color: #475569;
}

.dashboard-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.btn-primary {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 176, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 176, 122, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 176, 122, 0.08);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 176, 122, 0.2);
    border-color: rgba(0, 176, 122, 0.25);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B07A, #008A5E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 176, 122, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.stat-number {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change.negative {
    color: #ef4444;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 176, 122, 0.15);
    box-shadow: 0 4px 20px rgba(0, 176, 122, 0.08);
}

.widget h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.chart-placeholder {
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 176, 122, 0.1), rgba(0, 138, 94, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 2px dashed rgba(0, 176, 122, 0.2);
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 176, 122, 0.1);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    color: #00B07A;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.activity-item span {
    flex: 1;
    color: #475569;
    line-height: 1.5;
}

.activity-item time {
    color: #64748b;
    font-size: 0.85rem;
}

.funnel-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.funnel-stage {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.funnel-stage h3 {
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-weight: 600;
}

.stage-count {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.stage-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-card {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid #2563eb;
}

.lead-card h4 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-weight: 600;
}

.lead-card p {
    margin: 0 0 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.lead-value {
    color: #2563eb;
    font-weight: 600;
}

.leads-table-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
}

.leads-table th,
.leads-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.leads-table th {
    background: rgba(37, 99, 235, 0.05);
    font-weight: 600;
    color: #1e293b;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status.warm {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status.cold {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.btn-action {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.btn-action:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.btn-action.danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-info {
    padding: 1.5rem;
}

.property-info h4 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-weight: 600;
}

.property-price {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.property-location {
    margin: 0 0 1rem 0;
    color: #64748b;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.property-features span {
    color: #64748b;
    font-size: 0.9rem;
}

.property-features i {
    color: #2563eb;
    margin-right: 0.25rem;
}

.property-actions {
    display: flex;
    gap: 0.5rem;
}

.site-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.settings-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.settings-card h3 {
    margin: 0 0 1.5rem 0;
    color: #1e293b;
    font-weight: 600;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.profile-container {
    max-width: 600px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.profile-avatar {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #2563eb;
}

.avatar-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #2563eb;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-upload:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-form h3 {
    margin: 2rem 0 1rem 0;
    color: #1e293b;
    font-weight: 600;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    padding-top: 2rem;
}

/* Dashboard Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        width: 100%;
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
    
    .funnel-stages {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .site-settings {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .leads-table-container {
        overflow-x: scroll;
    }
}

/* ===== MODERN DASHBOARD STYLES ===== */

/* Modern Dashboard Base */
.modern-dashboard {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0 !important;
    overflow-x: visible !important;
}

/* Modern Sidebar */
.modern-sidebar {
    width: 180px;
    background: linear-gradient(135deg, #00B07A 0%, #008A5E 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 15px rgba(0, 176, 122, 0.1);
}

.sidebar-brand {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-item.active .nav-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.nav-item.active .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    border-radius: 0 2px 2px 0;
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.nav-link span {
    flex: 1;
}

.logout-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

.logout-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 180px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    max-width: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: #f1f5f9;
    color: #00B07A;
}

.page-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f1f5f9;
    color: #00B07A;
}

.notification-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 1.125rem;
    text-align: center;
    line-height: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.user-profile:hover {
    background: #f8fafc;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1;
}

.user-role {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1;
}

.user-menu-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-menu-btn:hover {
    color: #00B07A;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    padding: 2rem;
    background: #f8fafc;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Stats Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-overview {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card.compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.stat-card.compact .stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.stat-card.compact .stat-value {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-card.compact .stat-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.stat-card.compact .stat-trend {
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.stat-icon.buildings {
    background: linear-gradient(135deg, #00B07A, #008A5E);
}

.stat-icon.leads {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-icon.sales {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-icon.revenue {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.stat-trend.positive {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.stat-trend i {
    font-size: 0.625rem;
}

.stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.stat-period {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-template-areas: 
        "chart activity"
        "actions properties";
}

.chart-card {
    grid-area: chart;
}

.activity-card {
    grid-area: activity;
}

.actions-card {
    grid-area: actions;
}

.properties-card {
    grid-area: properties;
}

/* Dashboard Cards */
.dashboard-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
}

.card-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.period-selector {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-selector:hover {
    border-color: #00B07A;
}

.view-all-btn {
    background: none;
    border: none;
    color: #00B07A;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: rgba(0, 176, 122, 0.1);
}

.card-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Chart Canvas */
.chart-canvas {
    width: 100% !important;
    height: 300px !important;
}

/* Activity Timeline */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: #f8fafc;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.activity-icon.success {
    background: #10b981;
}

.activity-icon.info {
    background: #3b82f6;
}

.activity-icon.warning {
    background: #f59e0b;
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.activity-detail {
    font-size: 0.75rem;
    color: #64748b;
}

.activity-time {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.quick-action-btn i {
    font-size: 1.25rem;
}

.quick-action-btn.primary {
    background: linear-gradient(135deg, #00B07A, #008A5E);
    color: white;
}

.quick-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 176, 122, 0.5);
}

.quick-action-btn.secondary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.quick-action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.5);
}

.quick-action-btn.tertiary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-action-btn.tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(16, 185, 129, 0.5);
}

.quick-action-btn.quaternary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.quick-action-btn.quaternary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.5);
}

/* Property List */
.property-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.property-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.property-item:hover {
    background: #f8fafc;
}

.property-image {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.property-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.property-location {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.property-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00B07A;
}

.property-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.views {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Modern Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "chart"
            "activity"
            "actions"
            "properties";
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-sidebar {
        transform: translateX(-100%);
        width: 240px;
    }
    
    .modern-sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.75rem;
    }
    
    .nav-link i {
        font-size: 1rem;
        width: 20px;
    }
    
    .brand-logo img {
        height: 32px;
    }
    
    .sidebar-brand {
        padding: 1.25rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .header-actions {
        display: none;
    }
    
    .user-info {
        display: none;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card.compact {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #00B07A;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.toast-success {
    border-left-color: #00B07A;
}

.toast.toast-error {
    border-left-color: #ef4444;
}

.toast.toast-info {
    border-left-color: #3b82f6;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-content i {
    font-size: 1.25rem;
}

.toast.toast-success .toast-content i {
    color: #00B07A;
}

.toast.toast-error .toast-content i {
    color: #ef4444;
}

.toast.toast-info .toast-content i {
    color: #3b82f6;
}

.toast-content span {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .dashboard-card {
        border-radius: 0.75rem;
    }
    
    .card-header {
        padding: 1rem 1rem 0 1rem;
    }
    
    .card-body {
        padding: 0 1rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .modern-sidebar {
        width: 280px;
    }
    
    .page-subtitle {
        display: none;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .chart-canvas {
        height: 250px !important;
    }
    
    .nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.75rem;
    }
    
    .nav-link i {
        font-size: 1rem;
        width: 20px;
    }
    
    .brand-logo img {
        height: 32px;
    }
    
    .sidebar-brand {
        padding: 1.5rem;
    }
}

/* Property Cards Custom Styles - Override for /imoveis page */
.properties-grid .property-card .property-image img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    display: block !important;
}

.properties-grid .property-card .btn-whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: var(--atlas-white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

.properties-grid .property-card .property-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.properties-grid .property-card .property-location {
    margin-bottom: 1rem !important;
}

.properties-grid .property-card .property-price {
    font-size: 24px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--atlas-primary) 0%, var(--atlas-primary-dark) 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-left: 1rem !important;
}

.properties-grid .property-card .property-features {
    display: flex !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    padding: 1rem !important;
    background: rgba(37, 99, 235, 0.04) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(37, 99, 235, 0.08) !important;
}
