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

:root {
    /* Nova Paleta de Cores - Verde Escuro e Dourado */
    --color-bg: #030504;
    --color-bg-secondary: #050706;
    --color-bg-tertiary: #070A09;
    --color-gold: #C89A39;
    --color-gold-light: #F1E3C0;
    --color-gold-dark: #8B6720;
    --color-text: #F1E3C0;
    --color-text-secondary: #C89A39;
    --color-text-muted: #8B6720;
    --font-main: "Playfair Display", serif;
    --font-secondary: "Lato", sans-serif;
    --transition-base: 0.3s ease;
    
    /* Cores do Sistema */
    --primary-color: var(--color-gold);
    --primary-hover: var(--color-gold-dark);
    --secondary-color: var(--color-gold-light);
    --accent-color: #06b6d4;
    
    --bg-primary: var(--color-bg);
    --bg-secondary: var(--color-bg-secondary);
    --bg-tertiary: var(--color-bg-tertiary);
    --bg-glass: rgba(200, 154, 57, 0.05);
    --bg-glass-hover: rgba(200, 154, 57, 0.1);
    
    --text-primary: var(--color-text);
    --text-secondary: var(--color-text-secondary);
    --text-muted: var(--color-text-muted);
    
    --border-color: rgba(200, 154, 57, 0.2);
    --border-hover: rgba(200, 154, 57, 0.4);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(200, 154, 57, 0.2);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tema Light (White) */
[data-theme="light"] {
    --color-bg: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-tertiary: #e9ecef;
    --color-gold: #2d98da;
    --color-gold-light: #111111;
    --color-gold-dark: #1a73e8;
    --color-text: #111111;
    --color-text-secondary: #2d98da;
    --color-text-muted: #6c757d;
    
    --primary-color: var(--color-gold);
    --primary-hover: var(--color-gold-dark);
    --secondary-color: var(--color-gold-light);
    --accent-color: #2d98da;
    
    --bg-primary: var(--color-bg);
    --bg-secondary: var(--color-bg-secondary);
    --bg-tertiary: var(--color-bg-tertiary);
    --bg-glass: rgba(45, 152, 218, 0.05);
    --bg-glass-hover: rgba(45, 152, 218, 0.1);
    
    --text-primary: var(--color-text);
    --text-secondary: var(--color-text-secondary);
    --text-muted: var(--color-text-muted);
    
    --border-color: rgba(45, 152, 218, 0.2);
    --border-hover: rgba(45, 152, 218, 0.4);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 0 20px rgba(45, 152, 218, 0.2);
}

body {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 50%, var(--color-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Tema Light - Background específico */
[data-theme="light"] body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(3, 5, 4, 0.95) 0%, rgba(5, 7, 6, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(200, 154, 57, 0.1);
}

/* Tema Light - Header */
[data-theme="light"] .header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(45, 152, 218, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.logo a span {
    display: inline-block;
}

.logo i {
    color: var(--color-gold);
    font-size: 1.5rem;
}

/* Logo compacto no mobile */
@media (max-width: 768px) {
    .logo a {
        font-size: 0.85rem;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
}

/* Navigation */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-light);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(200, 154, 57, 0.4);
}

.nav-link:hover::after {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* Search */
.search-container {
    flex: 1;
    max-width: 350px;
    display: none;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 38px;
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.search-select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    font-size: 0.8rem;
    border-right: 1px solid var(--border-color);
    outline: none;
    min-width: 85px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    font-size: 0.8rem;
    outline: none;
    min-width: 100px;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.search-btn:hover {
    background: var(--primary-hover);
}

/* Mostrar busca em telas maiores */
@media (min-width: 1024px) {
    .search-container {
        display: block;
    }
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    white-space: nowrap;
}

.user-btn:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
}

.user-btn span {
    display: none;
}

@media (min-width: 768px) {
    .user-btn span {
        display: inline;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 0.5rem;
}

.user-dropdown:hover .user-dropdown-menu,
.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.dropdown-item:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #ffd700);
    color: var(--color-bg);
    border: 1px solid var(--color-gold);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd700, var(--color-gold));
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #7c3aed;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.mobile-menu-toggle:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    color: var(--color-gold);
}

.mobile-menu-toggle.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav {
        display: none;
    }
}

/* Mobile Menu Melhorado */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 320px;
    height: 100%;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-menu-logo i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    position: relative;
}

.mobile-nav-list a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.mobile-nav-list a:hover i,
.mobile-nav-list a.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-search {
    margin-bottom: 1rem;
}

.mobile-auth {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.mobile-auth .btn {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-auth .btn:last-child {
    margin-bottom: 0;
}

.mobile-auth .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsividade do menu mobile */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-menu-header {
        padding: 1rem;
    }
    
    .mobile-menu-logo {
        font-size: 1rem;
    }
    
    .mobile-nav-list a {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-auth {
        padding: 1rem;
    }
    
    .mobile-auth .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animações suaves para o menu */
.mobile-menu {
    will-change: transform, opacity;
}

.mobile-menu-content {
    will-change: transform;
}

.mobile-nav-list a {
    will-change: background-color, color, transform;
}

.mobile-auth .btn {
    will-change: transform, box-shadow;
}

/* Main Content */
.main {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
}

/* Cards */
.card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass);
    border-color: var(--border-hover);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-glass);
}

/* Property Cards */
.property-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glass);
    border-color: var(--primary-color);
}

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-info {
    padding: 1.5rem;
}

.property-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.property-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.875rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #86efac;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    transition: background-color 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer-section {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
}

/* ===== FOOTER ADMIN ===== */
.admin-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.admin-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.admin-footer .footer-section {
    min-width: 0;
}

.admin-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.admin-footer .footer-logo i {
    color: var(--primary-color);
}

.admin-footer .footer-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.admin-footer .footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.admin-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.admin-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.admin-footer .contact-item i {
    color: var(--primary-color);
    width: 14px;
}

.admin-footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.admin-footer .footer-bottom p {
    margin: 0.2rem 0;
}

@media (max-width: 768px) {
    .admin-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .admin-footer .footer-section {
        text-align: center;
    }
    
    .admin-footer .footer-logo {
        justify-content: center;
    }
    
    .admin-footer .contact-info {
        align-items: center;
    }
}

/* ===== ELEMENTOS PROFISSIONAIS ELEGANTES ===== */

/* Container principal do logotipo */
.logo-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    text-align: center;
    max-width: 480px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.logo-container:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

/* Moldura decorativa */
.logo-border {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Efeito de luz dourada sutil */
.logo-border::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent 30%
    );
    animation: rotateLight 8s linear infinite;
    opacity: 0.2;
}

@keyframes rotateLight {
    to {
        transform: rotate(360deg);
    }
}

/* Ícone estilizado do imóvel */
.logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-gold);
    transition: var(--transition);
}

.logo-icon:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    box-shadow: var(--shadow-gold);
}

/* Textos elegantes */
.logo-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0.5rem 0;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.logo-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

/* Botões com efeito dourado sutil */
.btn-gold {
    background: var(--bg-tertiary);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Cards com borda dourada sutil */
.card-gold {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.card-gold:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Inputs com foco dourado sutil */
.input-gold {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.input-gold:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1023px) {
    .header-content {
        gap: 0.75rem;
    }
    
    .logo a span {
        font-size: 0.9rem;
    }
    
    .auth-buttons {
        gap: 0.25rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo a {
        font-size: 0.85rem;
    }
    
    .logo a span {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .logo-container {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.85rem;
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .main {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo a span {
        max-width: 140px;
    }
    
    .user-btn i:not(:first-child) {
        display: none;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .auth-buttons {
        gap: 0.25rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
}

/* ===== SISTEMA DE TEMAS ===== */

/* Botão de Alternância de Tema */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle:hover i {
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Ícones específicos para cada tema */
.theme-toggle .fa-moon {
    display: block;
}

.theme-toggle .fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .theme-toggle i {
        font-size: 1.2rem;
    }
}

/* Transições suaves para todos os elementos */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Tema Light - Ajustes específicos */
[data-theme="light"] .footer {
    background: var(--bg-primary);
}

[data-theme="light"] .footer-bottom {
    border-top-color: var(--border-color);
}

[data-theme="light"] .footer-links a:hover {
    color: var(--primary-color);
}
