/* Estilos generales */
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #EAEAEA;
}
.spec-table tr:last-child td {
    border-bottom: none;
}
.route-layer {
    background-color: rgba(77, 170, 125, 0.1);
    border-left: 3px solid #4DAA7D;
}

/* Menú de navegación */
.menu-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: white;
}
.menu-item:hover {
    background-color: #0a2e4d;
}
/* Active menu item */
.menu-active {
    background-color: #0a2e4d;
    color: #D86A3F;
    font-weight: 600;
}
.menu-icon {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}
.cta-button {
    background-color: #D86A3F;
    font-weight: 500;
    border-radius: 4px;
}
.cta-button:hover {
    background-color: #c55a32;
}

/* Hero Background */
.hero-background {
    background-image: url('/static/images/privada1.jpg');
    background-size: cover;
    background-position: center;
}

/* Hero Overlay */
.hero-overlay {
    background-color: rgba(13, 59, 102, 0.6);
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Testimonial Cards */
.testimonial-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Property Cards */
.property-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0D3B66;
}

/* Distance Badge */
.distance-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

/* Filter Section */
.filter-section {
    transition: all 0.3s ease;
}
.sticky-filters {
    position: sticky;
    top: 20px;
}

/* Map Container */
.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

/* Feature & Filter Badges */
.feature-badge {
    background-color: rgba(77, 170, 125, 0.1);
    color: #4DAA7D;
}
.active-filter {
    background-color: #0D3B66;
    color: #ffffff;
}
