  :root {
            --primary-color: #ff5a5f;
            --secondary-color: #00a699;
            --dark-color: #484848;
            --light-color: #f7f7f7;
            --text-color: #3d3d3d;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--light-color);
        }
        
        /* Header estilo Lamudi */
        .navbar-lamudi {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        .navbar-lamudi .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 600;
            margin: 0 10px;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .btn-primary-lamudi {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 4px;
            font-weight: 600;
            color: white;
        }
        
        .btn-primary-lamudi:hover {
            background-color: #e04e52;
            border-color: #e04e52;
        }
        
        /* Hero section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('familia.jpg') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 20px;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Search box estilo Lamudi */
        /* Estilos modernos para móviles */
.mobile-property-search {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 100%;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.search-header {
    margin-bottom: 20px;
    text-align: center;
}

.search-header h2 {
    color: #2d3436;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.search-tabs {
    display: flex;
    background: #f5f6fa;
    border-radius: 50px;
    padding: 4px;
    margin: 0 auto;
    max-width: 250px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
}

.modern-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 12px;
    background-color: #fff;
    appearance: none;
    font-size: 1rem;
    color: #2d3436;
    transition: border-color 0.3s;
}

.modern-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 78, 82, 0.1);
}

.form-group i {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: #636e72;
    pointer-events: none;
}

.modern-search-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.modern-search-btn:hover {
    background: #e04e52;
    transform: translateY(-1px);
}
        /* Property listing */
        .property-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px auto;
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .property-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .property-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }
        
        .property-status {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .property-info {
            padding: 20px;
        }
        
        .property-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .property-location {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .property-location i {
            color: var(--primary-color);
            margin-right: 5px;
        }
        
        .property-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .property-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .property-feature {
            text-align: center;
        }
        
        .property-feature i {
            display: block;
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .load-more-btn {
            display: block;
            margin: 30px auto;
            padding: 12px 40px;
            background-color: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .load-more-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* WhatsApp float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            line-height: 60px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 100;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Footer */
        .main-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-logo img {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-about {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .footer-social a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3:after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            margin-top: 10px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #003366;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card img {
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0056b3;
    font-size: 24px;
}

* Testimonios */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #003366;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 350px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #003366;
}

.testimonial-author span {
    font-size: 14px;
    color: #777;
}
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .search-box-container {
                margin-top: 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: 50vh;
            }
            
            .property-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            .search-box-container {
                margin-top: 0;
            }
        
            .search-form {
                flex-direction: column;
            }
            
            .search-form select, 
            .search-form .form-check {
                width: 100%;
            }

            .mobile-property-search {
                border-radius: 0;
                box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
            }
            
            .search-header h2 {
                font-size: 1.3rem;
            }
            
            .modern-select {
                padding: 12px 16px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                height: 40vh;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            .search-box-container {
                margin-top: 0;
            }
        
            
            .section-title {
                font-size: 1.5rem;
            }
        }