/* --- Contenedor Principal Estándar (Aluminio) --- */
.section-estandar { 
    border: 1px solid rgba(148, 163, 184, 0.3) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(30, 41, 59, 0.2) !important; 
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

/* --- Tarjeta de Inmueble Estándar --- */
.section-estandar .card-job {
    background: #1e293b; /* Fondo azul grisáceo muy oscuro */
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    border-radius: 22px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-estandar .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(148, 163, 184, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(148, 163, 184, 0.1) !important;
}

/* --- Etiqueta (Ribbon) Estándar --- */
.section-estandar .badge-estandar {
    background: #64748b; /* Plomo medio */
    color: #ffffff;
    padding: 6px 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    border-radius: 0 0 10px 0;
}

/* --- Pin de Ubicación --- */
.section-estandar .location-text {
    color: #94a3b8 !important; /* Color aluminio */
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Botón de Detalles Estándar --- */
.section-estandar .btn-estandar-action {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    color: #ffffff !important;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.3);
}

.section-estandar .btn-estandar-action:hover {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%) !important;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(148, 163, 184, 0.4);
}