    /* ===========================================
   HOME PAGE - MODERN DESIGN SYSTEM
   =========================================== */


    :root {
        /* Primary Color Palette */
        --primary-color: #0066cc;
        --primary-dark: #9ba0ca;
        --primary-light: #7c3aed;
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

        /* Secondary Colors */
        --secondary-color: #666666;
        --secondary-dark: #6b46c1;
        --secondary-light: #8b5cf6;
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

        /* Accent Colors */
        --accent-color: #ffc35c;
        --accent-dark: #e53e3e;
        --accent-light: #fd7b7b;

        /* Neutral Colors */
        --white: #ffffff;
        --black: #000000;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-400: #94a3b8;
        --gray-500: #64748b;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --gray-900: #0f172a;

        /* Status Colors */
        --success-color: #00e096;
        --success-dark: #059669;
        --success-light: #34d399;
        --success-gradient: linear-gradient(135deg, #48bb78 0%, #38a169 100%);

        --warning-color: #f59e0b;
        --warning-dark: #d97706;
        --warning-light: #fbbf24;
        --warning-gradient: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);

        --danger-color: #ff0000;
        --danger-dark: #dc2626;
        --danger-light: #f87171;
        --danger-gradient: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);

        --info-color: #3b82f6;
        --info-dark: #2563eb;
        --info-light: #60a5fa;
        --info-gradient: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);

        /* Dark Theme Colors */
        --dark-color: #1a202c;
        --dark-light: #2d3748;
        --dark-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);

        /* Background Gradients */
        --bg-gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        --bg-gradient-dark: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
        --bg-gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --success-gradient: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        --info-gradient: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
        --warning-gradient: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
        --dark-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);

        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.2);
        --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
        --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
        --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.25);

        --border-radius-sm: 8px;
        --border-radius-md: 12px;
        --border-radius-lg: 16px;
        --border-radius-xl: 24px;

        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;
    }

    /* Global Styles */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;

    }

    /* Loading States */
    body.loading {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Mobile Menu Overlay */
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Navbar Principal */
    #mainNavbar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        padding: 0;
        min-height: 70px;
    }

    #mainNavbar.navbar-scrolled {

        backdrop-filter: blur(20px);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(0);
    }

    /* Logo e Marca */
    .navbar-brand {
        font-weight: 700;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        padding: 0;
    }

    .logo-img {
        max-height: 60px;
        margin-right: 1rem;
        border-radius: 8px;
    }

    .logo-placeholder {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4299e1, #667eea);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        margin-right: 1rem;
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .company-name {
        font-weight: 800;
        font-size: 1.3rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 2px;
    }

    .brand-tagline {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
    }

    /* Links de Navegação */
    .nav-link {
        font-weight: 600;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.75rem 1rem;
        margin: 0 0.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: white;
        transform: translateY(-1px);

    }

    .nav-link i {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover i {
        transform: scale(1.1);
    }

    /* Dropdown Menu */
    .dropdown-menu {
        background: white;
        border: none;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        backdrop-filter: blur(10px);
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-weight: 500;
        color: #4a5568;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .dropdown-item:hover {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        transform: translateX(5px);
    }

    .dropdown-item i {
        width: 20px;
        margin-right: 0.5rem;
    }

    /* Botões */
    .btn-login,
    .btn-register {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 600;
        padding: 0.5rem 1.25rem;
        border-radius: 25px;
        margin: 0 0.25rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-login:hover,
    .btn-register:hover {
        background: white;
        color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    .btn-register {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border: none;
    }

    .btn-register:hover {
        background: linear-gradient(135deg, #e84393, #f5576c);
        color: white;
    }

    .btn-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        margin-left: 0.5rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-whatsapp:hover {
        background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    /* Menu do Usuário */
    .user-menu {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1rem !important;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .user-menu:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    .user-avatar {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
    }

    .user-name {
        font-weight: 600;
        font-size: 0.9rem;
        color: white;
    }

    /* Toggle Button */
    .navbar-toggler {
        border: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Espaçador */


    /* Responsividade */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            margin-top: 1rem;
            padding: 1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .nav-link {
            color: #4a5568 !important;
            justify-content: flex-start;
            padding: 0.75rem 1rem;
            margin: 0.25rem 0;
            border-radius: 8px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
        }

        .btn-login,
        .btn-register,
        .btn-whatsapp {
            margin: 0.25rem 0;
            justify-content: center;
        }

        .user-menu {
            background: transparent !important;
        }

        .company-name {
            font-size: 1.1rem;
        }

        .brand-tagline {
            display: none;
        }
    }

    @media (max-width: 576px) {
        .navbar-brand {
            font-size: 1.1rem;
        }

        .logo-img,
        .logo-placeholder {

            height: 40px;
            margin-right: 0.75rem;
        }

        .company-name {
            font-size: 1rem;
        }

        .nav-link span {
            display: none;
        }

        .nav-link {
            justify-content: center;
            padding: 0.75rem;
        }

        .btn-login span,
        .btn-register span,
        .btn-whatsapp span {
            display: none;
        }
    }

    /* Animações */
    @keyframes slideInDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .navbar {
        animation: slideInDown 0.5s ease-out;
    }

    /* Scroll Effect */
    .navbar-scroll .navbar-brand {
        transform: scale(0.95);
    }

    .navbar-scroll .company-name {
        color: #2d3748 !important;
        text-shadow: none;
    }

    .navbar-scroll .brand-tagline {
        color: #718096 !important;
    }

    .navbar-scroll .nav-link {
        color: #4a5568 !important;
    }

    .navbar-scroll .nav-link:hover,
    .navbar-scroll .nav-link.active {
        color: #667eea !important;
        background: rgba(102, 126, 234, 0.1);
    }

    /* Ripple Effect */
    .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transform: scale(0);
        animation: ripple 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* Backdrop for mobile menu */
    .navbar-backdrop {
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Enhanced accessibility */
    .nav-link:focus-visible,
    .btn:focus-visible {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    /* Loading states */
    .nav-link[style*="opacity: 0.7"] {
        pointer-events: none;
    }

    /* Subtle animations */
    .nav-link {
        position: relative;
        overflow: hidden;
    }

    .nav-link::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;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    /* Smooth Transitions */
    * {
        scroll-behavior: smooth;
        border-radius: 1px;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    }

    /* Print Styles */
    @media print {

        .navbar,
        .floating-action,
        .btn {
            display: none !important;
        }
    }

    /* High Contrast Mode Support */
    @media (prefers-contrast: high) {


        .nav-link {
            color: #fff !important;
        }

        .nav-link:hover {
            background: #fff !important;
            color: #000 !important;
        }
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* ===========================================
   GLOBAL UTILITY CLASSES
   =========================================== */

    /* Section Padding Standardization */
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        color: var(--primary-gradient);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }

    .section-title p {
        color: #6c757d;
        font-size: 1.1rem;
        margin: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Animation Classes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* ===========================================
   HERO SECTION - CINEMATIC EXPERIENCE
   =========================================== */

    .hero-section {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        background: var(--dark-gradient);
        color: white;
        display: flex;
        align-items: center;
        isolation: isolate;
        top: -10px;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(245, 87, 108, 0.2) 0%, transparent 50%);
        z-index: -1;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: -2;
        filter: brightness(0.8) contrast(1.1);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.6) 100%);
        z-index: -1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        padding: 2rem;
        animation: heroSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        flex-wrap: wrap;
    }

    @keyframes heroSlideIn {
        0% {
            opacity: 0;
            transform: translateY(60px) scale(0.9);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        animation: titleGlow 2s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
        from {
            filter: brightness(1);
        }

        to {
            filter: brightness(1.1);
        }
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.8rem);
        margin-bottom: 3rem;
        font-weight: 400;
        opacity: 0.9;
        line-height: 1.6;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease 0.3s both;
    }

    /* Scroll Down Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: white;
        opacity: 0.8;
        animation: bounce 2s infinite;
        cursor: pointer;
    }

    .scroll-mouse {
        width: 24px;
        height: 36px;
        border: 2px solid white;

        margin: 0 auto 0.5rem;
        position: relative;
    }

    .scroll-wheel {
        width: 4px;
        height: 8px;
        background: white;

        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }

        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    @keyframes scroll {
        0% {
            opacity: 0;
            transform: translateX(-50%) translateY(0);
        }

        50% {
            opacity: 1;
            transform: translateX(-50%) translateY(6px);
        }

        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(12px);
        }
    }

    .scroll-indicator p {
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }

    /* ===========================================
   SEARCH BOX - MODERN GLASS DESIGN
   =========================================== */

    .search-container {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);

        padding: 3rem;
        margin-top: 2rem;
        box-shadow: var(--shadow-heavy);
        position: relative;
        overflow: hidden;
        animation: searchBoxFloat 1s ease 0.6s both;
    }

    @keyframes searchBoxFloat {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .search-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    .search-form .form-control,
    .search-form .form-select {
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid transparent;

        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 500;
        transition: all var(--transition-normal);
        backdrop-filter: blur(10px);
    }

    .search-form .form-control:focus,
    .search-form .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        background: #fff;
        transform: translateY(-2px);
    }

    .search-btn {
        background: var(--primary-gradient);
        border: none;
        border-radius: 1px;
        padding: 1rem 2rem;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .search-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .search-btn::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 var(--transition-slow);
    }

    .search-btn:hover::before {
        left: 100%;
    }

    /* ===========================================
   FEATURES SECTION - INTERACTIVE CARDS
   =========================================== */

    .features-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
    }

    .features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(135deg, #f8fafc 0%, transparent 100%);
        pointer-events: none;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: #718096;
        font-weight: 400;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-card {
        background: white;

        padding: 2.5rem;
        box-shadow: var(--shadow-light);
        transition: all var(--transition-normal);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        height: 100%;
        animation: cardSlideUp 0.8s ease both;
    }

    @keyframes cardSlideUp {
        0% {
            opacity: 1;
            transform: translateY(40px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform var(--transition-normal);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-medium);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: var(--primary-gradient);

        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        color: white;
        transition: all var(--transition-normal);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }

    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 1rem;
    }

    .feature-description {
        color: #718096;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* ===========================================
   PROPERTIES SECTION - SLIDER
   =========================================== */

    .properties-section {
        padding: 4rem 0;
        background: #ffffff;
        position: relative;
    }

    .featured-properties-slider {
        width: 100%;

        margin: 0 auto;
        position: relative;
    }


    .property-image-container {
        flex: 1;
        position: relative;
        min-height: 100%;
        background: #f3f4f6;
    }

    .property-swiper {
        height: 100%;
        width: 100%;
    }

    .property-swiper .swiper-slide {
        height: 100%;
    }

    .property-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .property-content {
        flex: 1;

        display: flex;
        flex-direction: column;
        background: #ffffff;
        border-left: 1px solid #e5e7eb;
    }

    .featured-property .property-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .property-location {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6b7280;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .property-location i {
        color: #ef4444;
    }

    .property-description {
        color: #4b5563;
        line-height: 1.6;

    }

    .featured-property .property-price {
        font-size: 2rem;
        font-weight: 800;
        color: #047857;
    }

    .property-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;

        background: #f9fafb;
        padding: 1.5rem;

    }

    .property-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #374151;
    }

    .property-feature i {
        font-size: 1.25rem;
        color: #3b82f6;
        width: 24px;
        text-align: center;
    }

    .property-feature span {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .featured-ribbon {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: #3b82f6;
        color: white;
        padding: 0.5rem 1rem;

        font-weight: 600;
        font-size: 0.875rem;
        z-index: 10;
    }

    /* Controles do Slider */
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: #ffffff;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        color: #1f2937;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.25rem;
        font-weight: bold;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #3b82f6;
        opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: #3b82f6;
    }

    .btn-view-details {
        margin-top: auto;
        background: #3b82f6;
        color: white;
        padding: 1rem 1.5rem;

        font-weight: 600;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
    }

    .btn-view-details:hover {
        background: #2563eb;
        transform: translateY(-2px);
    }

    /* Responsividade */
    @media (max-width: 1024px) {
        .featured-property-slide {
            flex-direction: column;
            min-height: auto;
        }

        .property-image-container,
        .property-content {
            flex: none;
            width: 100%;
        }

        .property-image-container {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .property-features {
            grid-template-columns: 1fr;
        }

        .property-title {
            font-size: 1.5rem;
        }

        .property-price {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 640px) {
        .property-image-container {
            height: 300px;
        }

        .property-content {
            padding: 1.5rem;
        }
    }

    .properties-section {
        padding: 6rem 0;
        background: linear-gradient(to bottom, #f8fafc, #ffffff);
        overflow: hidden;
    }

    .featured-properties-slider {
        width: 100%;

        margin: 2rem auto;
        position: relative;
        padding: 20px;
    }

    .featured-property-slide {
        background: #ffffff;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 0;

        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .featured-property-slide:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .property-image-container {
        height: 100%;
        position: relative;
        overflow: hidden;
        background: #f8fafc;
    }

    .property-content {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        background: #ffffff;
        position: relative;
        border-left: 1px solid #e2e8f0;
    }

    /* Controles do Slider */
    .featured-slider-next,
    .featured-slider-prev {
        background: var(--primary-gradient);
        width: 60px;
        height: 60px;

        color: white;
        transition: all 0.3s ease;
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .featured-slider-next:hover,
    .featured-slider-prev:hover {
        transform: scale(1.1);
        background: var(--primary-gradient);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .featured-slider-next::after,
    .featured-slider-prev::after {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .featured-slider-pagination {
        position: absolute;
        bottom: 2rem !important;
        z-index: 10;
    }

    .featured-slider-pagination .swiper-pagination-bullet {
        width: 40px;
        height: 5px;
        background: var(--primary-gradient);
        opacity: 1;
        transition: all 0.3s ease;

        margin: 0 5px !important;
    }

    .featured-slider-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        width: 60px;
        background: var(--primary-gradient);
        box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    }

    .property-card {
        background: white;

        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: all var(--transition-normal);
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        animation: propertyCardFade 0.8s ease both;
    }

    .property-card-featured {
        border: 2px solid #667eea;
        background: linear-gradient(to bottom, #ffffff, #f8faff);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    }

    .featured-ribbon {
        position: absolute;
        top: 20px;
        left: -35px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        padding: 8px 40px;
        font-weight: 700;
        font-size: 0.9rem;
        transform: rotate(-45deg);
        z-index: 3;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .featured-ribbon i {
        color: #ffd700;
        animation: starPulse 2s infinite;
    }

    @keyframes starPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
        }
    }

    .property-badge-featured {
        background: linear-gradient(45deg, #667eea, #764ba2);
        padding: 8px 16px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    @keyframes propertyCardFade {
        0% {
            opacity: 1;
            transform: translateY(30px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .property-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--shadow-heavy);
    }

    .property-image-container {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .property-swiper {
        width: 100%;
        height: 100%;
    }

    .property-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .property-card:hover .property-image {
        transform: scale(1.05);
    }

    /* Personalização dos controles do Swiper */
    .property-swiper {
        height: 100%;
    }

    .property-swiper .swiper-button-next,
    .property-swiper .swiper-button-prev {
        color: white;
        background: var(--primary-gradient);
        width: 45px;
        height: 45px;

        transition: all 0.3s ease;
        opacity: 0;
    }

    .property-image-container:hover .swiper-button-next,
    .property-image-container:hover .swiper-button-prev {
        opacity: 1;
    }

    .property-swiper .swiper-button-next:after,
    .property-swiper .swiper-button-prev:after {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .property-swiper .swiper-button-next:hover,
    .property-swiper .swiper-button-prev:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .property-swiper .swiper-pagination-bullet {
        background: white;
        opacity: 0.7;
    }

    .property-swiper .swiper-pagination-bullet-active {
        background: var(--primary-gradient);
        opacity: 1;
    }

    .property-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-gradient);
        color: white;
        padding: 0.5rem 1rem;

        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }





    .overlay-content {
        text-align: center;
        color: white;
        transform: translateY(20px);
        transition: transform var(--transition-normal);
    }

    .property-card:hover .overlay-content {
        transform: translateY(0);
    }

    .quick-info {
        background: #ffffff;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border: 1px solid #e2e8f0;
    }

    .quick-price {
        font-size: 1.8rem;
        font-weight: 900;
        color: #667eea;
        display: block;
        margin-bottom: 1rem;
    }

    .quick-features {
        display: flex;
        justify-content: space-around;
        gap: 1rem;
    }

    .quick-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .quick-feature i {
        font-size: 1.5rem;
        color: #667eea;
    }

    .quick-feature span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #4a5568;
    }

    .property-content {
        padding: 2rem;
    }

    .property-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        transition: color var(--transition-fast);
    }

    .property-card:hover .property-title {
        color: #667eea;
    }

    .property-location {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        color: #718096;
        margin-bottom: 1rem;
    }

    .property-location i {
        color: #e53e3e;
        font-size: 1rem;
    }

    .property-description {
        color: #718096;
        font-size: 0.9rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .property-price {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-gradient);
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 0;
    }

    .property-price::before {
        content: 'R$';
        font-size: 1rem;
        font-weight: 600;
        opacity: 0.8;
    }



    .property-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #f8fafc;

        transition: all var(--transition-fast);
    }

    .property-feature:hover {
        background: #edf2f7;
        transform: translateX(5px);
    }

    .property-feature i {
        font-size: 1.2rem;
        color: #667eea;
        width: 20px;
    }

    .property-feature span {
        font-size: 0.85rem;
        color: #4a5568;
        font-weight: 600;
    }

    .property-actions {
        margin-top: auto;
    }

    .btn-view-details {
        width: 100%;
        background: var(--primary-gradient);
        border: none;


        font-weight: 600;
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-view-details:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        color: white;
        text-decoration: none;
    }

    .btn-view-details::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 var(--transition-slow);
    }

    .btn-view-details:hover::before {
        left: 100%;
    }

    /* ===========================================
   STATS SECTION - ANIMATED COUNTERS
   =========================================== */

    .stats-section {
        padding: 5rem 0;
        background: var(--primary-gradient);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.1;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        position: relative;
        z-index: 1;
        animation: statItemSlide 0.8s ease both;
    }

    @keyframes statItemSlide {
        0% {
            opacity: 1;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all var(--transition-normal);
    }

    .stat-item:hover .stat-icon {
        transform: scale(1.1) rotate(5deg);
        background: rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        display: block;
        background: linear-gradient(45deg, #fff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 600;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ===========================================
   CTA SECTION - CALL TO ACTION
   =========================================== */

    .cta-section {
        padding: 6rem 0;
        background: var(--secondary-gradient);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.2) 0%, transparent 50%);
    }

    .cta-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
        animation: ctaContentSlide 1s ease both;
    }

    @keyframes ctaContentSlide {
        0% {
            opacity: 1;
            transform: translateY(40px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .cta-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .cta-description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta-primary {
        background: var(--primary-gradient);
        border: none;

        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all var(--transition-normal);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-cta-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .btn-cta-primary::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 var(--transition-slow);
    }

    .btn-cta-primary:hover::before {
        left: 100%;
    }

    .btn-cta-secondary {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.8);

        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all var(--transition-normal);
        backdrop-filter: blur(10px);
    }

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        transform: translateY(-3px) scale(1.05);
        color: white;
        text-decoration: none;
    }

    /* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

    @media (max-width: 1200px) {
        .hero-content {
            padding: 1.5rem;
        }

        .search-container {
            padding: 2.5rem;
        }
    }

    @media (max-width: 992px) {
        .hero-title {
            font-size: 3.5rem;
        }

        .search-container {
            padding: 2rem;
        }

        .feature-card {
            margin-bottom: 2rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            width: 100%;
            max-width: 400px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            min-height: 80vh;
        }

        .hero-content {
            padding: 1rem;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
        }

        .search-container {
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .search-form .row>div {
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .feature-card {
            padding: 2rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .property-features {
            grid-template-columns: 1fr;
        }

        .stat-item {
            margin-bottom: 2rem;
        }

        .stat-number {
            font-size: 2.8rem;
        }

        .cta-title {
            font-size: 2.5rem;
        }

        .cta-description {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            min-height: 70vh;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .search-container {
            padding: 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .feature-card {
            padding: 1.5rem;
        }

        .property-image-container {
            height: 200px;
        }

        .property-content {
            padding: 1.5rem;
        }

        .property-title {
            font-size: 1.2rem;
        }

        .stat-number {
            font-size: 2.2rem;
        }

        .cta-title {
            font-size: 2rem;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
    }

    /* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */

    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    @media (prefers-color-scheme: dark) {
        .property-content {
            background-color: #2d3748;
            color: #e2e8f0;
        }

        .property-title {
            color: #e2e8f0;
        }

        .property-location {
            color: #a0aec0;
        }

        .property-description {
            color: #a0aec0;
        }

        .property-feature span {
            color: #a0aec0;
        }
    }

    @media print {

        .hero-section,
        .cta-section,
        .search-container {
            display: none !important;
        }

        .property-card {
            break-inside: avoid;
            box-shadow: none;
            border: 1px solid #ddd;
        }
    }

    /* ===========================================
   UTILITY CLASSES
   =========================================== */

    .bounce-in {
        animation: none;
    }

    @keyframes bounceIn {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .loading {
        position: relative;
        overflow: hidden;
    }

    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    /* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

    /* Hero Section */
    .hero-contact {
        background: var(--primary-gradient);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero-contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactpattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactpattern)"/></svg>');
        pointer-events: none;
    }

    .hero-contact .contact-hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-contact .contact-hero-image {
        position: relative;
        z-index: 2;
    }

    .min-vh-50 {
        min-height: 50vh;
    }

    .contact-quick-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact-item-hero {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .contact-item-hero i {
        width: 20px;
        text-align: center;
    }

    .contact-hero-image {
        text-align: center;
    }

    .contact-hero-image img {

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 400px;
        object-fit: cover;
    }

    /* Contact Section */
    .contact-section {
        background-color: #f8f9fa;
    }

    .contact-info-card,
    .contact-form-card {
        background: white;
        padding: 2rem;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea, #764ba2);

        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-details h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-details p {
        color: #666;
        font-size: 0.95rem;
    }

    .contact-details a {
        color: #667eea;
        transition: color 0.3s;
    }

    .contact-details a:hover {
        color: #5a67d8;
    }

    /* Social Links */
    .social-links {
        display: flex;
        gap: 0.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        background: #667eea;
        color: white;

        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s;
    }

    .social-link:hover {
        background: #5a67d8;
        color: white;
        transform: translateY(-2px);
    }

    /* Form Styles */
    .form-label {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .form-control,
    .form-select {
        border: 2px solid #e9ecef;

        padding: 0.75rem;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

    /* Search form specific styles */
    .search-form .form-control,
    .search-form .form-select {
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid transparent;
        border-radius: 1px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 500;
        transition: all var(--transition-normal);
        backdrop-filter: blur(10px);

    }

    .search-form .form-control:focus,
    .search-form .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        background: #fff;
        transform: translateY(-2px);
    }

    .btn-primary {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border: none;
        width: 100%;
        color: white;
        font-size: 1.1rem;

        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #5a67d8, #6b46a3);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    /* Map Section */
    .map-section iframe {
        width: 100%;
        height: 400px;
        border: none;
    }

    /* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

    /* Page Header Enhancement */
    .page-header {
        background: var(--primary-gradient);
        color: white;
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .page-header h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease-out;
    }

    .page-header .page-description {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 0;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .page-header .breadcrumb {
        background: rgba(255, 255, 255, 0.2);

        padding: 0.5rem 1.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease-out 0.1s both;
    }

    .page-header .breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-header .breadcrumb a:hover {
        color: var(--accent-color);
    }

    .page-header .breadcrumb-item.active {
        color: rgba(255, 255, 255, 0.9);
    }

    /* About Section Enhancement */
    .about-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        pointer-events: none;
    }

    /* Company Hero Section */
    .company-hero {
        background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
        color: white;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .company-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heropattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heropattern)"/></svg>');
        pointer-events: none;
    }

    .company-info h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .company-info .lead {
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .company-stats {
        margin-top: 3rem;
    }

    .company-stats .row>div {
        text-align: center;
        padding: 1rem;
    }

    .company-stats h3 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--accent-color);
    }

    .company-stats p {
        font-size: 1.1rem;
        margin: 0;
        opacity: 0.9;
    }

    /* History Timeline */
    .history-timeline {
        padding: 80px 0;
        background: white;
        position: relative;
    }

    .timeline-container {
        position: relative;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary-gradient), var(--secondary-gradient));
        transform: translateX(-50%);

    }

    .history-block {
        position: relative;
        margin-bottom: 4rem;
        background: white;

        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .history-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .history-block:nth-child(even) {
        margin-left: auto;
        text-align: right;
    }

    .history-block::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: var(--primary-gradient);
        border: 4px solid white;

        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    }

    .history-block:nth-child(odd)::before {
        right: -62px;
    }

    .history-block:nth-child(even)::before {
        left: -62px;
    }

    .timeline-year {
        display: inline-block;
        background: var(--primary-gradient);
        color: white;
        padding: 0.5rem 1.5rem;

        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .timeline-content h3 {
        color: var(--primary-gradient);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .timeline-content p {
        color: #6c757d;
        line-height: 1.7;
        font-size: 1.1rem;
    }



    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statspattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23statspattern)"/></svg>');
        pointer-events: none;
    }

    .stat-card {
        text-align: center;
        padding: 2rem 1rem;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 500;
        opacity: 0.95;
    }

    /* Signature Section */
    .signature-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
    }

    .signature-container {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .signature-text {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #495057;
        font-style: italic;
        margin-bottom: 2rem;
        position: relative;
    }

    .signature-text::before,
    .signature-text::after {
        content: '"';
        font-size: 3rem;
        color: var(--primary-gradient);
        font-family: Georgia, serif;
        opacity: 0.5;
    }

    .signature-author {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-gradient);
        margin-bottom: 0.5rem;
    }

    .signature-role {
        color: #6c757d;
        font-size: 1rem;
    }

    /* Values Section */
    .values-section {
        padding: 80px 0;
        background: white;
    }

    .values-section .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }

    .values-section .section-title h2 {
        color: var(--primary-gradient);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .values-section .section-title p {
        color: #6c757d;
        font-size: 1.2rem;
    }

    .value-card {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: white;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
        height: 100%;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-gradient);
    }

    .value-icon {
        width: 80px;
        height: 80px;
        background: var(--primary-gradient);

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    .value-card h3 {
        color: var(--primary-gradient);
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .value-card p {
        color: #6c757d;
        line-height: 1.7;
        font-size: 1rem;
    }

    /* Differentials Section */
    .differentials-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
    }

    .differentials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diffpattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23diffpattern)"/></svg>');
        pointer-events: none;
    }

    .differential-card {
        text-align: center;
        padding: 2rem 1.5rem;
        background: white;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .differential-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .differential-card:hover::before {
        transform: scaleX(1);
    }

    .differential-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .differential-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-gradient), var(--secondary-gradient));

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
        color: white;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .differential-card h4 {
        color: var(--primary-gradient);
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .differential-card p {
        color: #6c757d;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Certifications Section */
    .certifications-section {
        padding: 80px 0;
        background: white;
    }

    .certification-card {
        text-align: center;
        padding: 2rem 1.5rem;
        background: white;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
        height: 100%;
        position: relative;
    }

    .certification-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-color);
    }

    .certification-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-color), #ffd700);

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.5rem;
        color: white;
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    }

    .certification-card h4 {
        color: var(--primary-gradient);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .certification-card p {
        color: #6c757d;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .certification-card small {
        color: #adb5bd;
        font-size: 0.85rem;
    }

    /* ===========================================
   PROPERTIES LIST PAGE STYLES
   =========================================== */

    /* Property List Specific Styles */
    .property-list-page .properties-list-page {
        min-height: 100vh;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
        position: relative;
        overflow-x: hidden;
    }

    .property-list-page .properties-list-page:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
        opacity: 0.05;
        z-index: 0;
    }

    .property-list-page .page-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 1;
        padding: 4rem 0 1rem;
    }

    .property-list-page .property-card {
        z-index: 1;
        animation: fadeInScale 0.6s ease-out;
        animation-fill-mode: both;
    }

    .property-list-page .property-card:nth-child(odd) {
        animation-delay: 0.1s;
    }

    .property-list-page .property-card:nth-child(even) {
        animation-delay: 0.2s;
    }

    .property-list-page .property-img-container {
        height: 240px;
    }

    .property-list-page .property-img {
        transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        width: 100%;
        height: 100%;
    }

    .property-list-page .property-card:hover .property-img {
        transform: scale(1.15);
    }

    .property-list-page .property-content {
        padding: 24px;
    }

    .property-list-page .property-features {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        border-top: 2px solid #f8f9fa;
        margin-top: auto;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);

        margin: 20px -24px -24px -24px;
    }

    .property-list-page .property-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        text-align: center;
        padding: 0 8px;
    }

    .property-list-page .property-feature i {
        font-size: 1.5rem;
        color: var(--primary-gradient);
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }

    .property-list-page .property-card:hover .property-feature i {
        transform: scale(1.2);
        color: var(--secondary-gradient);
    }

    .property-list-page .property-feature span {
        font-size: 0.9rem;
        color: #495057;
        font-weight: 600;
        line-height: 1.2;
    }

    .property-list-page .property-card .btn {
        margin-top: 20px;

        padding: 12px 24px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--primary-gradient);
        background: transparent;
        color: var(--primary-gradient);
    }

    .property-list-page .property-card .btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--primary-gradient);
        transition: left 0.4s;
        z-index: -1;
    }

    .property-list-page .property-card .btn:hover:before {
        left: 0;
    }

    .property-list-page .property-card .btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    }

    /* ===========================================
   DEVELOPMENTS PAGE STYLES
   =========================================== */

    /* Developments Dark Theme */
    .properties-list-page {
        min-height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
        position: relative;
        overflow-x: hidden;
        color: #fff;
    }

    .properties-list-page:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
        opacity: 0.1;
        z-index: 0;
    }

    .page-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 1;
        padding: 4rem 0;
    }

    .page-title {
        font-size: clamp(2.8rem, 6vw, 4rem);
        font-weight: 900;
        color: #fff;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }

    .page-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-gradient), var(--secondary-gradient));

        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

    .page-subtitle {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
        color: #e2e8f0;
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        line-height: 1.6;
    }

    .filters-section {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        padding: 3.5rem;

        margin-bottom: 3rem;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        z-index: 1;
        animation: slideInFromTop 1s ease-out;
    }

    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .filters-form .form-control,
    .filters-form .form-select {
        border: 2px solid transparent;
        border-radius: 1px;
        padding: 14px 18px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        font-weight: 500;
    }

    .filters-form .form-control:focus,
    .filters-form .form-select:focus {
        border-color: var(--primary-gradient);
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
        background: #fff;
        transform: translateY(-3px);
    }

    .filters-form .btn {

        padding: 14px 28px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
        background: linear-gradient(135deg, var(--primary-gradient), var(--secondary-gradient));
        border: none;
        color: var(--primary-color) !important;
    }

    .filters-form .btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
    }

    .filters-form .btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .filters-form .btn:hover:before {
        left: 100%;
    }

    .results-info p {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem 3rem;

        display: inline-block;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .property-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: fadeInScale 0.8s ease-out;
        animation-fill-mode: both;
    }

    .property-card:hover {
        transform: translateY(-20px) scale(1.03);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .property-card:nth-child(odd) {
        animation-delay: 0.15s;
    }

    .property-card:nth-child(even) {
        animation-delay: 0.3s;
    }

    .property-img-container {
        height: 260px;
    }

    .property-img {
        transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .property-card:hover .property-img {
        transform: scale(1.2);
    }

    .property-badge {
        top: 18px;
        right: 18px;
        padding: 10px 18px;

        font-size: 0.9rem;
        font-weight: 800;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .property-content {
        padding: 28px;
    }

    .property-title {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .property-price {
        font-size: 1.8rem;
        font-weight: 900;
        margin: 14px 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .property-price:before {
        content: "R$";
        font-size: 1rem;
        margin-right: 6px;
        opacity: 0.8;
    }

    .property-features {
        padding: 24px;
        border-top: 3px solid #f8f9fa;
        margin-top: auto;
        box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .property-feature i {
        font-size: 1.8rem;
        margin-bottom: 10px;
        padding: 12px;
        background: rgba(13, 110, 253, 0.1);

        transition: all 0.4s ease;
    }

    .property-card:hover .property-feature i {
        transform: scale(1.3) rotate(5deg);
        color: var(--secondary-gradient);
        background: rgba(108, 117, 125, 0.1);
    }

    .property-feature span {
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .property-card .btn {
        margin-top: 24px;

        padding: 14px 28px;
        font-weight: 700;
        border: 3px solid var(--primary-gradient);
        background: transparent;
        color: var(--primary-gradient);
    }

    .property-card .btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
        border-color: var(--primary-gradient);
    }

    .no-properties {
        padding: 5rem 3rem;
        background: rgba(255, 255, 255, 0.95);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .no-properties h3 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    }

    .no-properties p {
        font-size: 1.2rem;
        opacity: 0.8;
    }

    .page-link {

        border: 3px solid transparent;
        padding: 14px 20px;
        font-weight: 700;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
    }

    .page-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .page-item.active .page-link {
        background: linear-gradient(135deg, var(--primary-gradient), var(--secondary-gradient));
        border-color: var(--primary-gradient);
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
        color: #fff;
    }

    .development-highlight {
        background: linear-gradient(135deg, var(--primary-gradient), var(--secondary-gradient));
        color: #fff;
        padding: 8px 16px;

        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

    /* ===========================================
   RESPONSIVE DESIGN FOR PAGE-SPECIFIC STYLES
   =========================================== */

    @media (max-width: 768px) {

        /* Contact Page Mobile */
        .hero-contact {
            padding: 4rem 0 3rem;
        }

        .hero-contact h1 {
            font-size: 2.5rem;
        }

        .contact-info-card,
        .contact-form-card {
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .contact-details {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .cta-section .col-lg-4 {
            text-align: center !important;
        }

        /* About Page Mobile */
        .page-header {
            padding: 6rem 0 1rem;
        }

        .company-hero {
            padding: 60px 0;
        }

        .company-info h1 {
            font-size: 2.5rem;
        }

        .company-info .lead {
            font-size: 1.1rem;
        }

        .company-stats h3 {
            font-size: 2rem;
        }

        .timeline-container::before {
            left: 30px;
        }

        .history-block {
            margin-left: 60px;
            text-align: left !important;
        }

        .history-block:nth-child(even) {
            margin-left: 60px;
            text-align: left !important;
        }

        .history-block::before {
            left: -45px !important;
        }

        .history-block:nth-child(even)::before {
            left: -45px !important;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .value-card,
        .differential-card,
        .certification-card {
            margin-bottom: 2rem;
        }

        .signature-text {
            font-size: 1.1rem;
        }

        /* Properties Page Mobile */
        .filters-section {
            padding: 2rem;
            margin: 1rem;
        }

        .property-card {
            margin-bottom: 2rem;
        }

        .filters-form .row {
            gap: 1rem;
        }

        .filters-form .col-md-3,
        .filters-form .col-md-2 {
            min-width: 100%;
        }
    }

    @media (max-width: 576px) {

        /* Contact Page Small Mobile */
        .hero-contact h1 {
            font-size: 2rem;
        }

        .contact-quick-info {
            align-items: center;
            text-align: center;
        }

        .btn-lg {
            width: 100%;
            max-width: 300px;
        }

        /* Properties Page Small Mobile */
        .page-title {
            font-size: 2rem;
        }

        .property-features {
            justify-content: center;
        }

        .property-card .btn {
            width: 100%;
        }

        /* About Page Small Mobile */
        .company-info h1 {
            font-size: 2rem;
        }

        .company-stats h3 {
            font-size: 1.8rem;
        }

        .timeline-year {
            font-size: 0.9rem;
            padding: 0.4rem 1rem;
        }

        .timeline-content h3 {
            font-size: 1.2rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .value-icon,
        .differential-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .certification-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }