  :root {
            
            
            
            
           

            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --accent-color: #4cc9f0;
            --dark-color: #2b2d42;
            --light-color: #f8f9fa;
            --text-color: #333;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--light-color);
        }
        
        /* Header estilo Lamudi */
        .navbar-modern {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .navbar-modern.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 40px;
            transition: var(--transition);
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .btn-modern {
            background-color: var(--primary-color);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            color: white;
            padding: 10px 20px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn-modern:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }
        .btn-primary-lamudi {
            background-color: var(--primary-color);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            color: white;
            padding: 10px 20px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn-primary-lamudi:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
            color: white;
        }
        /* Hero Section Styles */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('familia.jpg') center/cover no-repeat;
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Mobile Property Search */
.mobile-property-search {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.search-header {
    margin-bottom: 1.5rem;
}

.search-tabs {
    display: flex;
    border-radius: 30px;
    background: #f5f5f5;
    padding: 5px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #2c3e50;
    color: white;
}

/* Form Styles */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.modern-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    appearance: none;
    background-color: white;
    font-size: 1rem;
    cursor: pointer;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #777;
    pointer-events: none;
}

.modern-search-btn hover {
    background-color:rgb(0, 13, 88);
    border-color:rgb(0, 15, 80);
    color:rgb(255, 255, 255);
}
.modern-search-btn {
    background: #2539f3;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}
        /* 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);
            white-space: nowrap;       /* Evita el salto de línea */
            overflow: hidden;          /* Oculta el texto que sobresale */
            text-overflow: ellipsis;   /* Muestra puntos suspensivos */
            width: 100%;               /* Asegura que tome el ancho completo del contenedor */
            display: block; 
        }
        
        .property-location {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
            white-space: nowrap;       /* Evita el salto de línea */
            overflow: hidden;          /* Oculta el texto que sobresale */
            text-overflow: ellipsis;   /* Muestra puntos suspensivos */
            width: 100%;               /* Asegura que tome el ancho completo del contenedor */
            display: block; 
        }
        
        .property-location i {
            color: #00a699;
            margin-right: 5px;
        }
        
        .property-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            white-space: nowrap;       /* Evita el salto de línea */
            overflow: hidden;          /* Oculta el texto que sobresale */
            text-overflow: ellipsis;   /* Muestra puntos suspensivos */
            width: 100%;               /* Asegura que tome el ancho completo del contenedor */
            display: block; 
        }
        
        .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: #00a699;
            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-title {
                font-size: 2rem;
            }
            
            .lead {
                font-size: 1rem;
            }
            
            .mobile-property-search {
                padding: 1rem;
            }
            .navbar-brand img {
                height: 30px;
            }
            .property-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
        }
        
        @media (max-width: 576px) {
            
        
            
            .section-title {
                font-size: 1.5rem;
            }
        }