:root {
            --primary-color: #0aafee;
            --secondary-color: #28a745;
            --accent-color: #ffc107;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .hero-section {
            background: linear-gradient(rgba(10, 175, 238, 0.8), rgba(10, 175, 238, 0.6)), 
                        url('danilo/imgs/maxresdefault.jpg') center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .search-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 3rem;
        }

        .search-card h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.7rem 2rem;
            font-weight: 500;
            border-radius: 25px;
        }

        .btn-primary:hover {
            background-color: #0891c7;
            border-color: #0891c7;
        }

        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            font-size: 2.5rem;
        }

        .property-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 2rem;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .property-card img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }

        .property-card-body {
            padding: 1.5rem;
        }

        .property-title {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .property-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .property-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .badge-custom {
            background-color: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
        }

        .stats-section {
            background-color: var(--bg-light);
            padding: 4rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-text {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #0891c7);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 25px;
            font-weight: 500;
        }

        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-color);
        }

        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* Animações e efeitos */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 175, 238, 0.8), rgba(10, 175, 238, 0.6));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out;
        }

        .search-card {
            animation: fadeInUp 1.5s ease-out 0.3s both;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .property-card {
            animation: fadeInUp 0.8s ease-out both;
        }

        .property-card:nth-child(1) { animation-delay: 0.1s; }
        .property-card:nth-child(2) { animation-delay: 0.2s; }
        .property-card:nth-child(3) { animation-delay: 0.3s; }
        .property-card:nth-child(4) { animation-delay: 0.4s; }
        .property-card:nth-child(5) { animation-delay: 0.5s; }
        .property-card:nth-child(6) { animation-delay: 0.6s; }

        .property-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .stat-card {
            animation: fadeInUp 0.8s ease-out both;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(10, 175, 238, 0.1);
        }

        .stat-number {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, var(--primary-color), #0891c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:hover .stat-number {
            animation: pulse 0.6s ease-in-out;
        }

        .section-title {
            animation: fadeInUp 0.8s ease-out both;
        }

        .cta-section {
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color), #0891c7);
            animation: float 6s ease-in-out infinite;
        }

        .btn {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .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 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .parallax-element {
            will-change: transform;
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        .pulse-button {
            animation: pulse 2s infinite;
        }

        /* Scrollbar personalizada */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #0891c7;
        }

        /* Loading animation */
        .loading-wave {
            display: inline-block;
            animation: wave 1.4s ease-in-out infinite both;
        }

        .loading-wave:nth-child(2) { animation-delay: -1.32s; }
        .loading-wave:nth-child(3) { animation-delay: -1.1s; }

        @keyframes wave {
            0%, 40%, 100% { transform: scaleY(0.4); }
            20% { transform: scaleY(1.0); }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .search-card {
                margin-top: 2rem;
                padding: 1.5rem;
            }

            .hero-section {
                background-attachment: scroll;
            }

            .cta-section {
                background-attachment: scroll;
            }
        }

        /* Estilos adicionais para principal.php */

        /* Animações e efeitos */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stats Section */
        .stats-section {
            background-color: #f8f9fa;
            padding: 4rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(10, 175, 238, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #0aafee;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #0aafee, #0891c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:hover .stat-number {
            animation: pulse 0.6s ease-in-out;
        }

        .stat-text {
            font-size: 1.1rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* Financing Section */
        .financing-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-title {
            color: #0aafee;
            font-weight: 700;
            font-size: 2.5rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }

        .benefit-item i {
            font-size: 1.2rem;
        }

        .financing-image img {
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .financing-image img:hover {
            transform: scale(1.05);
        }

        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
        }

        .footer-content {
            padding: 3rem 0 2rem;
        }

        .footer-title {
            color: #0aafee;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #0aafee;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            color: #bdc3c7;
        }

        .contact-info i {
            color: #0aafee;
            margin-right: 0.5rem;
            width: 20px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .social-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .social-link:hover {
            color: #0aafee;
            transform: translateX(5px);
        }

        .social-link i {
            margin-right: 0.5rem;
            width: 20px;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            margin: 0;
            color: #bdc3c7;
        }

        .footer-bottom a {
            color: #0aafee;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stat-number {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .social-links {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        /* Parallax effects */
        .parallax-element {
            will-change: transform;
        }

        /* Button enhancements */
        .btn {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .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 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .btn-primary {
            background-color: #0aafee;
            border-color: #0aafee;
        }

        .btn-primary:hover {
            background-color: #0891c7;
            border-color: #0891c7;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animations */
        .spinner-border {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }